html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: #efedf4 !important;
    font-size: 14px !important;
}

main {
    display: block !important;
    position: relative !important;
    width: 100% !important;
}

header .container-fluid {
    max-width: 100% !important;
}

.container-fluid {
    margin: auto !important;
    max-width: 1400px !important;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.sidebar {
    width: 250px;
    background: #1e1b28;
    min-height: 100vh;
    transition: all 0.3s;
    border-right: 1px solid #272333;
}

    .sidebar.collapsed {
        width: 70px;
    }

    .sidebar ul li a {
        display: block;
        padding: 10px 20px;
        color: #f5f5f5;
        text-decoration: none;
        transition: background 0.2s;
    }

        .sidebar ul li a:hover {
            background: #272333;
        }

    .sidebar .upgrade-box {
        background: #222337;
        border: 1px solid #272333;
        border-radius: 8px;
        color: #f5f5f5 !important;
        margin: 10px;
    }

.sidebar-footer {
    background: #1e1b28;
}

    .sidebar-footer * {
        color: #f5f5f5 !important;
    }

.sidebar-header {
    color: #887c96;
    font-family: 'kdamthmorpro-regular' !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid #474865 !important;
}

.sidebar .btn-outline-primary {
    border-color: #272333 !important;
    border-width: 1px !important;
    color: #f5f5f5 !important;
}

    .sidebar .btn-outline-primary:hover {
        background-color: #272333 !important;
    }

.menu-item {
    color: #887c96 !important;
}

@font-face {
    font-family: 'kdamthmorpro-regular';
    src: url('../fonts/kdam_thmor_pro/kdamthmorpro-regular.ttf') format('truetype');
}

*:focus {
    box-shadow: none !important;
}


.wrapper:hover {
    /* box-shadow: 0 2px 4px #e8e8e8 !important; */
    transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
}

.wrapper {
    background-color: #fffeff !important;
    /* padding: 1.5rem !important; */
    transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    border-radius: 10px !important;
}

.wrapper-header {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    background-image: url(../images/svg/available-curve.svg);
    background-size: 100% 100%;
    clear: both;
    padding: .7rem 1rem !important;
    border-bottom: 1px solid #eaedef !important;
}

.wrapper-body {
    padding: 2rem 1rem !important;
    text-align: center !important;
    font-size: 14px !important;
}

.wrapper-footer {
    font-family: 'lato-regular';
    padding: .7rem 1rem !important;
}

    .wrapper-footer p {
        font-size: 14px !important;
        margin-bottom: 0 !important;
    }

@font-face {
    font-family: 'lato-regular';
    src: url('../fonts/lato/lato-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'robotocondensed-regular';
    src: url('../fonts/roboto_condensed/robotocondensed-regular.ttf') format('truetype');
}

.wrapper img {
    max-width: 128px !important;
}

@font-face {
    font-family: 'titilliumweb-regular';
    src: url('../fonts/titillium_web/titilliumweb-regular.ttf') format('truetype');
}

.wrapper-header h3 {
    margin: 0 !important;
    font-weight: normal !important;
    font-family: 'titilliumweb-regular' !important;
    font-size: 18px !important;
    padding-bottom: 0rem !important;
}

.wrapper-footer .btn-link {
    text-decoration: none !important;
    color: #ff8432 !important;
    padding-left: 0 !important;
    font-size: 16px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* Ensure row uses flexbox (Bootstrap does this by default, but to be sure) */
.row.equal-cols {
    display: flex;
    flex-wrap: wrap;
}

    /* Make columns flex items with equal height */
    .row.equal-cols > [class*="col-"] {
        display: flex;
        flex-direction: column;
    }

        /* Make wrapper inside each column fill height */
        .row.equal-cols > [class*="col-"] .wrapper {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        /* Optional: Make footer stick to the bottom */
        .row.equal-cols > [class*="col-"] .wrapper-footer {
            margin-top: auto;
        }

header {
    background-color: #fffeff !important;
    height: 53px !important;
}
/* Scrollbar Track */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
    height: 12px; /* Height of the scrollbar for horizontal scroll */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light grey color for the track */
}

/* Scrollbar Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background-color: #272333; /* Your desired color */
    border-radius: 10px; /* Optional: to make the thumb rounded */
    border: 3px solid #f1f1f1; /* Optional: border around the thumb */
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #888; /* Darker color on hover */
    }

nav .dropdown-toggle::after {
    display: none !important;
}

nav .nav-link {
    font-size: 14px !important;
}

nav .dropdown-menu {
    width: 280px !important;
    border: none !important;
    padding: 10px !important;
    box-shadow: 0 .125rem .25rem rgba(var(--bs-body-color-rgb), .075) !important;
    margin-top: 15px !important;
}

    nav .dropdown-menu .dropdown-item {
        font-size: 14px !important;
    }

    nav .dropdown-menu a {
        color: #333 !important;
        padding: .3rem 1rem !important;
    }

strong {
    font-weight: normal !important;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: #fffeff !important;
}

.wrapper-fixed li {
    padding: .7rem !important;
    background-color: #fffeff !important;
    margin-bottom: .3rem !important;
}

    .wrapper-fixed li a {
        color: #333 !important;
        text-decoration: none !important;
        font-size: 14px !important;
    }

.fi {
    margin-right: 5px !important;
    position: relative !important;
    top: 3px !important;
}

.breadcrumb * {
    font-size: 15px !important;
}

.breadcrumb .breadcrumb-item:not(.active) > a {
    color: #333 !important;
    text-decoration: none !important;
}

.wrapper-profile-help {
    margin-top: 1rem !important;
    padding: .5rem 1rem !important;
    background-color: #fffeff !important;
}

    .wrapper-profile-help img {
        width: 50px !important;
    }

    .wrapper-profile-help h4 {
        margin-top: 1rem !important;
        font-size: 16px !important;
        margin-bottom: 0 !important;
    }

.profile-section {
    background-color: #fffeff !important;
    margin-bottom: 1rem !important;
}

h4.font-default {
    font-size: 18px !important;
}

.wrapper-profile-help p {
    font-size: 14px !important;
}

.wrapper-profile-help .btn-yellow {
    font-size: 14px !important;
}

.address-wrapper, .wrapper-main {
    background-color: #fffeff !important;
    padding: 1rem !important;
    font-size: 14px;
    margin-bottom: .5rem !important;
}

.btn-theme {
    background-color: #887c96 !important;
    border-color: #887c96 !important;
}

.modal-content {
    background-color: #ffffff !important; /* pure white */
}

.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.2); /* lighter than default (0.5) */
}

.form-control, select.form-select {
    background-color: #efedf4 !important;
    padding: .5rem .7rem !important;
    border-color: #d6d4d0 !important;
    font-size: 14px !important;
}

    .form-control:focus, select.form-select:focus {
        border-color: #d6d4d0 !important;
    }

.btn-adjust {
    padding: .4rem !important;
}

.address-wrapper .btn-link {
    color: #333 !important;
    text-decoration: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.profile-container-fluid {
    width: 100% !important;
    display: block;
    position: relative !important;
}

.section-content {
    padding: 0 15px !important;
}

.my-14 * {
    font-size: 14px !important;
}

.business-btns .btn {
    font-size: 14px !important;
}

.panel-group {
    border: 1px solid #dee2e6;
    background-color: #fffeff;
}

    .panel-group .panel-title {
        border-bottom: 1px solid #e1e1e1 !important;
        padding: .7rem 1rem !important;
    }

    .panel-group .panel-body {
        padding: .7rem 1rem !important;
    }

    .panel-group .panel-title h4 {
        margin-bottom: 0 !important;
        font-size: 16px !important;
    }

.edit-content {
    border: 1px dashed #ced4da;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: .25rem;
    margin-top: 1rem;
}

.panel-group p {
    margin-bottom: 0 !important;
}

.panel-group .btn-secondary {
    padding: 0rem .6rem .1rem .6rem  !important;
}
