/***Scrollbar common***/
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;
}

    ::-webkit-scrollbar:vertical {
        width: 5px;
    }

    ::-webkit-scrollbar:horizontal {
        height: 5px;
    }

::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background-color: var(--sc-track);
}
/* ============================= */
/* Base & Typography             */
/* ============================= */
:root {
    --font-inter: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-inter);
    background: var(--gradient);
    color: var(--text);
    min-height: 100vh;
    font-size: 0.875rem;
}



.m-fs-7 {
    font-size: 0.7rem;
}

.m-small-12 {
    font-size: 0.75rem;
}


.m-amount {
    font-size: 1.6rem;
    font-weight: 700;
}

.m-sub {
    font-size: 0.9rem;
}

.m-footer {
    color: var(--muted);
    font-size: 0.9rem;
}





/* ============================= */
/* input form */
/* ============================= */
/* .form-select {
    color: var(--text);
} */

.form-select option {
    background-color: var(--bg-soft);
    color: var(--text);
}


/* ============================= */
/* border */
/* ============================= */


/* ============================= */
/* Layout & Containers           */
/* ============================= */
.m-content-wrap {
    padding-top: 1rem;
    padding-bottom: 3rem;
    min-height: 70vh;
}

.m-app-card {
    background: var(--bg-soft);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(2, 6, 23, 0.05);
}

.card {
    /* background: var(--bg-soft);
    border-radius: 18px; */
    /* box-shadow: 0 6px 24px rgba(2, 6, 23, 0.05); */
    color: var(--text);
}

.card-hover {
    /* cursor: pointer; */
    transition: transform 0.2s ease;
}


.card .badge {
    font-size: 0.8rem;
}

.m-stat-card {
    transition: transform 0.2s ease;
}

    .m-stat-card:hover {
        transform: translateY(-2px);
    }

.m-h-100p {
    height: 100%;
}

.w-138 {
    width: 138px;
}

.h-138 {
    height: 138px;
}

/* ============================= */
/* Navigation & Brand            */
/* ============================= */
.m-nav-light {
    color: var(--text);
}

.m-brand {
    font-weight: 700;
    color: var(--dark-purple);
}

/* ============================= */
/* Icons                         */
/* ============================= */
.m-dashHero-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    text-align: center;
    padding: 9px;
    font-size: 1.25rem;
}

.m-icon-purple {
    background: var(--dark-purple);
    color: #fff;
}

.m-icon-green {
    background: var(--dark-green);
    color: #fff;
}

.m-icon-cyan {
    background: var(--dark-cyan);
    color: #fff;
}

.m-icon-36 {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    border-radius: 12px;
    text-align: center;
    padding: 2px;
    background: var(--dark-purple);
}

    .m-icon-36 i {
        color: #fff;
    }

.icon-img-28 {
    overflow: hidden;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    object-fit: cover;
}


/* ============================= */
/* Miscellaneous                 */
/* ============================= */

.m-sticky-bg,
.sticky-top.bg-dark {
    background: var(--bg) !important;
}

.m-breadcrumb-item + .m-breadcrumb-item::before {
    color: rgb(138 138 138 / 75%);
}

.m-dropdown-divider {
    border-top: 1px solid rgb(120 120 120 / 76%);
}

/* ============================= */
/* underline tab                      */
/* ============================= */
.m-nav-underline {
    --bs-nav-underline-link-active-color: #3c00c8;
}

.m-nav-item .nav-link {
    color: var(--muted);
    padding: 0.5rem auto !important;
}

.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
    color: var(--dark-purple);
    border-bottom: 2px solid var(--dark-purple);
    font-weight: 600;
}

.m-border-gray-bottom {
    border-bottom-color: var(--gray-border) !important;
}




/* ============================= */
/* Analysts card                     */
/* ============================= */
.profile-img {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
}


/* ============================= */
/* custom form                */
/* ============================= */
.custom-light {
    background: var(--bg);
    color: var(--text);
}

    .custom-light.form-control:focus {
        background: var(--bg);
        color: var(--text);
        border-color: transparent;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    }

    .custom-light.form-control::placeholder {
        color: var(--text);
    }

.form-control, .form-select {
    font-size: inherit !important;
}
