/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

    /* ── Dashboard-specific clean styles ── */
    .dash-page { background: #f4f5fb; min-height: 100vh; }

    /* KPI Cards */
    .kpi-card {
        border: none;
        border-radius: 16px;
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        cursor: pointer;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .kpi-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    }
    .kpi-icon-wrap {
        width: 52px; height: 52px;
        border-radius: 14px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    .kpi-label {
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #94a3b8;
        margin-bottom: 4px;
    }
    .kpi-value {
        font-size: 1.85rem;
        font-weight: 700;
        color: #1e293b;
        line-height: 1.1;
        margin-bottom: 6px;
    }
    .kpi-sub {
        font-size: 0.78rem;
        font-weight: 500;
    }

    /* Section cards */
    .dash-card {
        border: none;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        background: #fff;
    }
    .dash-card .card-header {
        background: transparent;
        border-bottom: 1px solid #f1f5f9;
        padding: 1.1rem 1.4rem;
        border-radius: 16px 16px 0 0;
    }
    .dash-card .card-header h6 {
        font-size: 0.95rem;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
    }

    /* Recent orders table */
    .dash-table thead th {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #94a3b8;
        border-bottom: 2px solid #f1f5f9;
        padding: 10px 16px;
        background: #fafbff;
    }
    .dash-table tbody td {
        font-size: 0.875rem;
        color: #374151;
        padding: 12px 16px;
        vertical-align: middle;
        border-bottom: 1px solid #f8fafc;
    }
    .dash-table tbody tr:last-child td { border-bottom: none; }
    .dash-table tbody tr:hover td { background: #fafbff; }

    /* Country list */
    .country-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    .country-row:last-child { border-bottom: none; }
    .country-bar-bg {
        height: 4px;
        background: #f1f5f9;
        border-radius: 99px;
        margin-top: 4px;
    }
    .country-bar-fill {
        height: 4px;
        border-radius: 99px;
        background: linear-gradient(90deg, #696cff, #9155fd);
    }

    /* Package list */
    .pkg-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 9px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    .pkg-row:last-child { border-bottom: none; }

    /* Status badge pills */
    .status-pill {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        border-radius: 99px;
        padding: 3px 10px;
        font-size: 0.72rem;
        font-weight: 600;
    }
    .pill-pending    { background: #fff8e1; color: #f59e0b; }
    .pill-processing { background: #e0f7fa; color: #06b6d4; }
    .pill-completed  { background: #e8f5e9; color: #22c55e; }
    .pill-cancelled,
    .pill-failed     { background: #fce4ec; color: #ef4444; }

/* Professional Table Header Styling */
.table-dark th {
    color: white !important;
    border-color: transparent !important;
}
.table-light th {
    color: white !important;
    border-color: transparent !important;
}
/* SaaS UI Upgrade */
.nav-pills .nav-link {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    color: #566a7f;
}

.nav-pills .nav-link.active {
    background: #696cff;
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(105,108,255,0.4);
}

.nav-pills .nav-link:hover {
    background: rgba(105,108,255,0.08);
}

.card {
    border-radius: 12px;
}

#tab-loader {
    display: none;
}

.menu .app-brand.demo {
    height: 64px;
    margin-top: 12px;
}

.app-brand-logo.demo svg {
    width: 22px;
    height: 38px;
}

.app-brand-text.demo {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}
/* Analytics Page css start*/

    /* ── KPI Cards ── */
    .aa-kpi {
        border: none; border-radius: 16px; overflow: hidden;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        transition: transform .2s ease, box-shadow .2s ease;
    }
    .aa-kpi:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
    .aa-kpi-icon {
        width: 48px; height: 48px; border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem; flex-shrink: 0;
    }
    .aa-kpi-label {
        font-size: .68rem; font-weight: 700; letter-spacing: .09em;
        text-transform: uppercase; color: #94a3b8; margin-bottom: 3px;
    }
    .aa-kpi-value { font-size: 1.75rem; font-weight: 800; color: #1e293b; line-height: 1.1; }
    .aa-kpi-sub   { font-size: .78rem; font-weight: 500; color: #64748b; }
    .aa-kpi-bar   { height: 4px; border-radius: 0 0 16px 16px; }

    /* ── Section cards ── */
    .aa-card {
        border: none; border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06); background: #fff;
    }
    .aa-card-header {
        padding: 1rem 1.4rem; border-bottom: 1px solid #f1f5f9;
        border-radius: 16px 16px 0 0; background: transparent;
        display: flex; align-items: center; justify-content: space-between;
    }
    .aa-card-header h6 { font-size: .95rem; font-weight: 700; color: #1e293b; margin: 0; }

    /* ── Filter card ── */
    .aa-filter {
        border: none; border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06); background: #fff;
    }

    /* ── Tables ── */
    .aa-table thead th {
        font-size: .68rem; font-weight: 700; text-transform: uppercase;
        letter-spacing: .09em; color: #94a3b8; background: #fafbff;
        border-bottom: 2px solid #f1f5f9; padding: 11px 14px; white-space: nowrap;
    }
    .aa-table tbody td {
        font-size: .875rem; color: #374151;
        padding: 11px 14px; vertical-align: middle;
        border-bottom: 1px solid #f8fafc;
    }
    .aa-table tbody tr:last-child td { border-bottom: none; }
    .aa-table tbody tr:hover td { background: #fafbff; }

    /* ── Growth pills ── */
    .growth-up   { background:#e8f5e9; color:#22c55e; border-radius:99px; padding:3px 10px; font-size:.72rem; font-weight:700; }
    .growth-down { background:#fce4ec; color:#ef4444; border-radius:99px; padding:3px 10px; font-size:.72rem; font-weight:700; }
    .growth-flat { background:#f5f5f5; color:#6c757d; border-radius:99px; padding:3px 10px; font-size:.72rem; font-weight:700; }

    /* ── Progress bars ── */
    .aa-bar-bg   { height:6px; background:#f1f5f9; border-radius:99px; min-width:70px; }
    .aa-bar-fill { height:6px; border-radius:99px; }
/* Analytics Page css end */
/* Country Wise Page css start */

    /* ── Page base ── */
    .cw-page { background: #f4f5fb; }

    /* ── KPI Cards ── */
    .cw-kpi {
        border: none;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        transition: transform .2s ease, box-shadow .2s ease;
        cursor: default;
    }
    .cw-kpi:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    }
    .cw-kpi-icon {
        width: 48px; height: 48px;
        border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem; flex-shrink: 0;
    }
    .cw-kpi-label {
        font-size: .7rem; font-weight: 700;
        letter-spacing: .09em; text-transform: uppercase;
        color: #94a3b8; margin-bottom: 3px;
    }
    .cw-kpi-value {
        font-size: 1.75rem; font-weight: 800;
        color: #1e293b; line-height: 1.1; margin-bottom: 0;
    }
    .cw-kpi-sub { font-size: .78rem; font-weight: 500; color: #64748b; }
    .cw-kpi-bar { height: 4px; border-radius: 0 0 16px 16px; }

    /* ── Section cards ── */
    .cw-card {
        border: none; border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        background: #fff;
    }
    .cw-card-header {
        padding: 1.1rem 1.4rem;
        border-bottom: 1px solid #f1f5f9;
        border-radius: 16px 16px 0 0;
        background: transparent;
        display: flex; align-items: center; justify-content: space-between;
    }
    .cw-card-header h6 {
        font-size: .95rem; font-weight: 700; color: #1e293b; margin: 0;
    }

    /* ── Filter card ── */
    .cw-filter {
        border: none; border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        background: #fff;
    }

    /* ── Table ── */
    .cw-table thead th {
        font-size: .7rem; font-weight: 700;
        text-transform: uppercase; letter-spacing: .09em;
        color: #94a3b8; background: #fafbff;
        border-bottom: 2px solid #f1f5f9;
        padding: 11px 14px; white-space: nowrap;
    }
    .cw-table tbody td {
        font-size: .875rem; color: #374151;
        padding: 12px 14px; vertical-align: middle;
        border-bottom: 1px solid #f8fafc;
    }
    .cw-table tbody tr:last-child td { border-bottom: none; }
    .cw-table tbody tr:hover td { background: #fafbff; }

    /* ── Progress bar ── */
    .cw-progress-bg {
        height: 6px; background: #f1f5f9;
        border-radius: 99px; min-width: 80px;
    }
    .cw-progress-fill {
        height: 6px; border-radius: 99px;
        background: linear-gradient(90deg, #696cff, #9155fd);
    }

    /* ── Growth badge ── */
    .growth-up   { background: #e8f5e9; color: #22c55e; border-radius: 99px; padding: 3px 10px; font-size: .72rem; font-weight: 700; }
    .growth-down { background: #fce4ec; color: #ef4444; border-radius: 99px; padding: 3px 10px; font-size: .72rem; font-weight: 700; }
    .growth-flat { background: #f5f5f5; color: #6c757d; border-radius: 99px; padding: 3px 10px; font-size: .72rem; font-weight: 700; }

    /* ── Package list ── */
    .pkg-item {
        display: flex; align-items: center;
        justify-content: space-between;
        padding: 9px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    .pkg-item:last-child { border-bottom: none; }
    .pkg-rank {
        width: 24px; height: 24px; border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        font-size: .7rem; font-weight: 800;
        background: #eef0ff; color: #696cff;
        flex-shrink: 0; margin-right: 10px;
    }

/* Country Wise Page css end */
/* Customer Analytics Page css start */

    /* ── KPI Cards ── */
    .ca-kpi {
        border: none; border-radius: 16px; overflow: hidden;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        transition: transform .2s ease, box-shadow .2s ease;
    }
    .ca-kpi:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
    .ca-kpi-icon {
        width: 48px; height: 48px; border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem; flex-shrink: 0;
    }
    .ca-kpi-label {
        font-size: .68rem; font-weight: 700; letter-spacing: .09em;
        text-transform: uppercase; color: #94a3b8; margin-bottom: 3px;
    }
    .ca-kpi-value { font-size: 1.75rem; font-weight: 800; color: #1e293b; line-height: 1.1; }
    .ca-kpi-sub   { font-size: .78rem; font-weight: 500; color: #64748b; }
    .ca-kpi-bar   { height: 4px; border-radius: 0 0 16px 16px; }

    /* ── Section cards ── */
    .ca-card {
        border: none; border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06); background: #fff;
    }
    .ca-card-header {
        padding: 1rem 1.4rem; border-bottom: 1px solid #f1f5f9;
        border-radius: 16px 16px 0 0; background: transparent;
        display: flex; align-items: center; justify-content: space-between;
    }
    .ca-card-header h6 { font-size: .95rem; font-weight: 700; color: #1e293b; margin: 0; }

    /* ── Filter card ── */
    .ca-filter {
        border: none; border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06); background: #fff;
    }

    /* ── Tables ── */
    .ca-table thead th {
        font-size: .68rem; font-weight: 700; text-transform: uppercase;
        letter-spacing: .09em; color: #94a3b8; background: #fafbff;
        border-bottom: 2px solid #f1f5f9; padding: 11px 14px; white-space: nowrap;
    }
    .ca-table tbody td {
        font-size: .875rem; color: #374151;
        padding: 11px 14px; vertical-align: middle;
        border-bottom: 1px solid #f8fafc;
    }
    .ca-table tbody tr:last-child td { border-bottom: none; }
    .ca-table tbody tr:hover td { background: #fafbff; }

    /* ── Referral stat rows ── */
    .ref-row {
        display: flex; align-items: center; justify-content: space-between;
        padding: 10px 0; border-bottom: 1px solid #f1f5f9;
    }
    .ref-row:last-child { border-bottom: none; }
    .ref-label { font-size: .85rem; color: #64748b; font-weight: 500; }
    .ref-value { font-size: .95rem; font-weight: 700; color: #1e293b; }

/* Customer Analytics Page css end */

/* Provider Performance Page css start */

    /* ── KPI Cards ── */
    .ca-kpi {
        border: none; border-radius: 16px; overflow: hidden;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        transition: transform .2s ease, box-shadow .2s ease;
    }
    .ca-kpi:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
    .ca-kpi-icon {
        width: 48px; height: 48px; border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem; flex-shrink: 0;
    }
    .ca-kpi-label {
        font-size: .68rem; font-weight: 700; letter-spacing: .09em;
        text-transform: uppercase; color: #94a3b8; margin-bottom: 3px;
    }
    .ca-kpi-value { font-size: 1.75rem; font-weight: 800; color: #1e293b; line-height: 1.1; }
    .ca-kpi-sub   { font-size: .78rem; font-weight: 500; color: #64748b; }
    .ca-kpi-bar   { height: 4px; border-radius: 0 0 16px 16px; }

    /* ── Section cards ── */
    .ca-card {
        border: none; border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06); background: #fff;
    }
    .ca-card-header {
        padding: 1rem 1.4rem; border-bottom: 1px solid #f1f5f9;
        border-radius: 16px 16px 0 0; background: transparent;
        display: flex; align-items: center; justify-content: space-between;
    }
    .ca-card-header h6 { font-size: .95rem; font-weight: 700; color: #1e293b; margin: 0; }

    /* ── Filter card ── */
    .ca-filter {
        border: none; border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06); background: #fff;
    }

    /* ── Tables ── */
    .ca-table thead th {
        font-size: .68rem; font-weight: 700; text-transform: uppercase;
        letter-spacing: .09em; color: #94a3b8; background: #fafbff;
        border-bottom: 2px solid #f1f5f9; padding: 11px 14px; white-space: nowrap;
    }
    .ca-table tbody td {
        font-size: .875rem; color: #374151;
        padding: 11px 14px; vertical-align: middle;
        border-bottom: 1px solid #f8fafc;
    }
    .ca-table tbody tr:last-child td { border-bottom: none; }
    .ca-table tbody tr:hover td { background: #fafbff; }

    /* ── Referral stat rows ── */
    .ref-row {
        display: flex; align-items: center; justify-content: space-between;
        padding: 10px 0; border-bottom: 1px solid #f1f5f9;
    }
    .ref-row:last-child { border-bottom: none; }
    .ref-label { font-size: .85rem; color: #64748b; font-weight: 500; }
    .ref-value { font-size: .95rem; font-weight: 700; color: #1e293b; }

/* Provider Performance Page css end */

/* ! For .layout-navbar-fixed added fix padding top to .layout-page */

/* Detached navbar */

.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
    padding-top: 74px !important;
}

/* Default navbar */

.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
    padding-top: 64px !important;
}

.docs-page .layout-navbar-fixed.layout-wrapper:not(.layout-without-menu) .layout-page,
.docs-page .layout-menu-fixed.layout-wrapper:not(.layout-without-menu) .layout-page {
    padding-top: 62px !important;
}

/* Navbar page z-index issue solution */

.content-wrapper .navbar {
    z-index: auto;
}

.tab-content {
    padding: 0px !important;
    
}
country-card-title{
    color: rgb(247, 240, 240) !important;
}
/* .card-title {
    color: rgb(247, 240, 240) !important;
} */
/*
* Content
******************************************************************************/

.demo-blocks>* {
    display: block !important;
}

.demo-inline-spacing>* {
    margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */

.demo-vertical-spacing>* {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.demo-vertical-spacing-lg>* {
    margin-top: 1.875rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-lg.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.demo-vertical-spacing-xl>* {
    margin-top: 5rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-xl.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.rtl-only {
    display: none !important;
    text-align: left !important;
    direction: ltr !important;
}

[dir="rtl"] .rtl-only {
    display: block !important;
}

/* Dropdown buttons going out of small screens */

@media (max-width: 576px) {
    #dropdown-variation-demo .btn-group .text-truncate {
        width: 231px;
        position: relative;
    }

    #dropdown-variation-demo .btn-group .text-truncate::after {
        position: absolute;
        top: 45%;
        right: 0.65rem;
    }
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 1rem;
}

.layout-demo-placeholder img {
    width: 900px;
}

.layout-demo-info {
    text-align: center;
    margin-top: 1rem;
}

/* map and quill */

.term_para h3 strong,
.term_para p strong,
.term_para p span,
.term_para ol li span,
.ql-align-justify span,
.ql-align-center span,
.ql-align-justify strong {
    background-color: transparent !important;
}

li[data-list="ordered"] {
    list-style-type: decimal !important;
}

/* Style bullet lists */

li[data-list="bullet"] {
    list-style-type: disc !important;
}

#map {
    height: 400px;
    /* Set the desired height */
    width: 100%;
    /* Set the desired width */
}

#description {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
}

#infowindow-content .title {
    font-weight: bold;
}

#infowindow-content {
    display: none;
}

#map #infowindow-content {
    display: inline;
}

.pac-card {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    font-family: Roboto;
    padding: 0;
}

#pac-container {
    padding-bottom: 12px;
    margin-right: 12px;
}

.pac-controls {
    display: inline-block;
    padding: 5px 11px;
}

.pac-controls label {
    font-family: Roboto;
    font-size: 13px;
    font-weight: 300;
}

#pac-input {
    background-color: #fff;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    margin-left: 12px;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    text-overflow: ellipsis;
    width: 400px;
}

#pac-input:focus {
    border-color: #4d90fe;
}

#search-button {
    padding: 12px 14px;
    border: none;
    background: rgb(3, 145, 86);
    /* background: rgb(0, 59, 99); */
    color: #fff;
    margin-top: 17px;
    border-radius: 8px;
    margin-left: 15px;
    font-size: 12px;
}

#search-button:hover {
    color: #fff !important;
    transform: translateY(-1px) !important;
    background-color: rgb(6, 91, 55);
    border-color: rgb(6, 91, 55);
    /* background-color: rgb(0 109 159);
    border-color: rgb(0 109 159); */
}

#title {
    color: #fff;
    background-color: #4d90fe;
    font-size: 25px;
    font-weight: 500;
    padding: 6px 12px;
}

#target {
    width: 345px;
}

/* ------------------ */

tr:nth-child(even) {
    /* background-color: rgba(0, 59, 99, 0.09) !important; */
    background-color: rgb(49 79 121 / 11%) !important;
}

.app-brand-link .app-brand-logo img {
    width: 50px;
}

.au-btn--green {
    background-color: #314f79;
    /* background-color: rgb(0, 59, 99); */
    color: #fff !important;
    min-width: 120px;
    font-size: 14px;
    border-radius: 7px;
    padding: 10px 0px;
    text-align: center;
    float: left;
    transition: 0.2s linear;
}

/* .au-btn--green:hover {*/
/*    color: #fff !important;*/
/*    background-color: rgb(36 70 119 / 75%);*/
/*    border-color: rgb(49 79 121);*/
/*} */

.menu-text {
    font-size: 18px !important;
    text-transform: capitalize !important;
}

.primary-heading {
    font-size: 26px;
}

.gallery-attachment .actions {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    background-color: rgb(0, 0, 0);
    text-align: center;
    width: 35px;
    height: 35px;
    display: none;
}

.gallery-attachment .actions a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 2px;
    font-size: 20px;
}

.gallery-attachment:hover .actions {
    display: block;
}

/* chnges */

.model {
    display: flex;
    gap: 22rem;
}

.model-1 {
    display: flex !important;
    flex-direction: column;
}

.model-update-btn {
    display: flex;
    justify-content: center;
}

.model-btn {
    padding-right: 18em;
    margin-top: 2rem;
}

.ql-toolbar.ql-snow {
    border-radius: 0.375rem 0.375rem 0 0 !important;
}

#editor {
    border-radius: 0 0 0.375rem 0.375rem;
}

.ql-editor:focus {
    border: 1px solid rgb(3, 145, 86) !important;
}

/*
#content .ql-snow:focus {
    border-color: rgb(3, 145, 86) !important;
} */

/* .new-btn button {
    width: 11rem;
} */

.color-box-container .box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}
.color-box-container2 .box {
    width: 35px;
    height: 35px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.color-box-container .box#red,
.color-box-container2 .box#red {
    background-color: rgba(255, 0, 0, 0.47);
    border: 2px solid red;
    color: #ff0000;
}

.color-box-container .box#blue,
.color-box-container2 .box#blue {
    background-color: rgba(0, 85, 255, 0.47);
    border: 2px solid rgb(0, 85, 255);
    color: rgb(0, 85, 255);
}

.color-box-container .box#green,
.color-box-container2 .box#green {
    background-color: rgba(3, 68, 0, 0.47);
    border: 2px solid rgb(3, 68, 0);
    color: rgb(3, 68, 0);
}

.color-box-container .box#yellow,
.color-box-container2 .box#yellow {
    background-color: rgb(235, 235, 103);
    /* background-color: rgba(213, 226, 31, 0.901); */
    border: 2px solid #bcbf02;
    color: #bcbf02;
    /* color: rgb(238, 255, 7); */
}


@media screen and (min-width:1200px) {
    #layout-menu {
        position: fixed;
        top: 0px;
        height: 100vh;

    }

    .content-wrapper .container-xxl {
        /* max-width: calc(100vw - 280px) !important; */
        /* margin-left: auto !important; */
        /* margin-right: 0px !important; */
    }

    .layout-navbar.container-xxl {
        /* max-width: calc(100vw - 335px) !important; */
        /* margin-left: auto !important; */
        /* margin-right: 30px !important; */


    }
}

/* ── Sidebar Hover & Active Fix ── */
.layout-menu .menu-inner .menu-item  {
    /* background-color: #2f3e5c !important; */
    color: #fff !important;
}

.sidebar-menu-options-text{
      color: #ffffff !important;
    font-size: 13px !important;
}

.menu-inner > .menu-item > .menu-link{
    font-size: 0.875rem !important;
    font-weight: 400 !important;
}
.menu-inner > .menu-item > .menu-link div, .menu-inner > .menu-item > .menu-link span {
    color: rgb(255 255 255) !important;
}
body,.menu-link:hover{
    color:black !important;
}

.bg-menu-theme .menu-inner > .menu-item:not(.active) > .menu-link:hover, .bg-menu-theme .menu-inner > .menu-item:not(.active) > .menu-link:focus{
    color:black !important;
}

.layout-menu .menu-inner .menu-item:hover{
    color:black !important;
}

.layout-menu .menu-inner .menu-item.active > .menu-link {
    background: linear-gradient(45deg, #4e73df, #224abe) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(78,115,223,0.4) !important;
}

/* .layout-menu .menu-inner .menu-link:hover i,
.layout-menu .menu-inner .menu-link:hover .menu-icon,
.layout-menu .menu-inner .menu-item.active i,
.layout-menu .menu-inner .menu-item.active .menu-icon {
    color: #fff !important;
} */

.layout-menu .menu-link {
    transition: all 0.25s ease !important;
}

/* Remove white shadow line below logo */
.layout-menu .menu-inner-shadow {
    display: none !important;
}
.menu-link:hover {
    background-color: #0d56e9 !important;
    color: rgb(255, 255, 255) !important;
}