/* =========================================================
   Insight by Harsh Admin Theme
   Full Custom Admin CSS
========================================================= */

:root {
    --ib-font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ib-font-serif: 'Cormorant Garamond', Georgia, serif;

    --ib-bg: #fbf9f4;
    --ib-card: #ffffff;
    --ib-navbar: #f4f0e6;
    --ib-sidebar: #123d30;

    --ib-green: #123d30;
    --ib-green-dark: #0a251d;
    --ib-green-soft: #e4ebe4;
    --ib-green-soft-2: #edf4ef;

    --ib-terracotta: #b27453;
    --ib-terracotta-dark: #9c6040;
    --ib-terracotta-light: #faf3ee;

    --ib-gold: #d9a05b;
    --ib-gold-soft: #d7b06a;

    --ib-text: #123d30;
    --ib-text-dark: #062d23;
    --ib-muted: #5a6b61;
    --ib-light-muted: #9ba89f;

    --ib-border: #e5e1d5;
    --ib-border-dark: rgba(18, 61, 48, 0.12);

    --ib-radius-lg: 18px;
    --ib-radius-md: 12px;
    --ib-radius-sm: 8px;

    --ib-shadow-sm: 0 1px 3px rgba(18, 61, 48, 0.05);
    --ib-shadow-md: 0 8px 24px rgba(18, 61, 48, 0.07);
    --ib-shadow-lg: 0 18px 42px rgba(18, 61, 48, 0.10);
    --ib-shadow: 0 14px 35px rgba(18, 61, 48, 0.08);

    --ib-navbar-height: 82px;
    --ib-sidebar-width: 260px;
    --ib-sidebar-icon-width: 86px;
}

/* =========================================================
   Base Reset
========================================================= */

html,
body {
    min-height: 100%;
    background: var(--ib-bg) !important;
    font-family: var(--ib-font-sans) !important;
    color: var(--ib-text) !important;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

body.ib-admin-body {
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

button,
input,
select,
textarea {
    font-family: var(--ib-font-sans) !important;
}

.container-scroller,
.page-body-wrapper,
.container-fluid {
    max-width: 100% !important;
}

/* =========================================================
   App Layout
========================================================= */

.ib-admin-shell {
    min-height: 100vh;
    background: var(--ib-bg) !important;
    overflow-x: hidden;
}

.ib-page-body-wrapper {
    min-height: 100vh;
    background: var(--ib-bg) !important;
    padding: 0 !important;
    padding-top: var(--ib-navbar-height) !important;
    display: flex;
    align-items: stretch;
}

.ib-main-panel {
    width: calc(100% - var(--ib-sidebar-width)) !important;
    min-height: calc(100vh - var(--ib-navbar-height));
    margin-left: var(--ib-sidebar-width);
    background: var(--ib-bg) !important;
    transition: all 0.25s ease;
    padding: 0 !important;
}

.ib-main-content {
    padding: 32px 34px 18px !important;
    min-height: calc(100vh - var(--ib-navbar-height) - 82px);
    background: var(--ib-bg) !important;
}

.ib-main-content > .content-wrapper,
.ib-main-content .content-wrapper {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

body.sidebar-icon-only .ib-main-panel {
    width: calc(100% - var(--ib-sidebar-icon-width)) !important;
    margin-left: var(--ib-sidebar-icon-width);
}

.sidebar-overlay {
    display: none;
}

body.sidebar-open .sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(6, 45, 35, 0.45);
    z-index: 998;
}

/* =========================================================
   Global UI
========================================================= */

.card {
    background: var(--ib-card) !important;
    border: 1px solid var(--ib-border) !important;
    border-radius: var(--ib-radius-lg) !important;
    box-shadow: var(--ib-shadow-sm) !important;
    overflow: hidden;
}

.card .card-body {
    color: var(--ib-text);
}

.card-title {
    font-family: var(--ib-font-serif);
    color: var(--ib-text);
    font-weight: 800;
    letter-spacing: -0.2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ib-text);
    font-weight: 800;
}

.text-muted {
    color: var(--ib-muted) !important;
}

.btn {
    border-radius: var(--ib-radius-md) !important;
    font-weight: 800 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--ib-green) !important;
    border-color: var(--ib-green) !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background: var(--ib-green-dark) !important;
    border-color: var(--ib-green-dark) !important;
    transform: translateY(-1px);
}

.btn-light {
    background: #fffdf8 !important;
    border-color: var(--ib-border) !important;
    color: var(--ib-text) !important;
}

.btn-light:hover {
    background: #f7f5ef !important;
}

.btn-success {
    background: #0f8a5f !important;
    border-color: #0f8a5f !important;
}

.btn-danger {
    background: #b94242 !important;
    border-color: #b94242 !important;
}

.badge {
    border-radius: 999px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1px;
    width: auto !important;
    min-width: unset !important;
}

.bg-success {
    background-color: #0f8a5f !important;
}

.bg-warning {
    background-color: #f4c76b !important;
}

.bg-info {
    background-color: #3b82a0 !important;
}

.bg-primary {
    background-color: var(--ib-green) !important;
}

.bg-secondary {
    background-color: #8c887d !important;
}

.bg-danger {
    background-color: #b94242 !important;
}

.form-control,
.form-select,
select.form-control {
    border-radius: var(--ib-radius-md) !important;
    border: 1px solid var(--ib-border) !important;
    background-color: #fffdf8 !important;
    color: var(--ib-text) !important;
    min-height: 46px;
    font-weight: 600;
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus,
select.form-control:focus {
    border-color: var(--ib-green) !important;
    box-shadow: 0 0 0 3px rgba(18, 61, 48, 0.08) !important;
}

textarea.form-control {
    min-height: auto;
}

.form-label {
    color: var(--ib-text);
    font-weight: 800;
}

.alert {
    border-radius: var(--ib-radius-md) !important;
    border: 1px solid transparent !important;
    font-weight: 700;
}

/* =========================================================
   Table + DataTables
========================================================= */

.table {
    color: var(--ib-text) !important;
    border-color: var(--ib-border) !important;
}

.table thead th {
    background: #f7f5ef !important;
    color: var(--ib-text) !important;
    border-color: var(--ib-border) !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-weight: 900;
}

.table tbody td {
    border-color: var(--ib-border) !important;
    vertical-align: middle;
    font-weight: 600;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #fffdf8 !important;
}

.dataTables_wrapper {
    color: var(--ib-text) !important;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    color: var(--ib-muted) !important;
    font-weight: 700;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    border: 1px solid var(--ib-border) !important;
    border-radius: 10px !important;
    background: #fffdf8 !important;
    padding: 7px 10px !important;
    outline: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 10px !important;
    border: 1px solid var(--ib-border) !important;
    background: #fffdf8 !important;
    color: var(--ib-text) !important;
    font-weight: 800;
    margin: 0 2px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--ib-green) !important;
    border-color: var(--ib-green) !important;
    color: #ffffff !important;
}

/* =========================================================
   Tabs
========================================================= */

.nav-tabs {
    border-bottom: 1px solid var(--ib-border) !important;
    gap: 8px;
}

.nav-tabs .nav-link {
    border: none !important;
    border-radius: 14px 14px 0 0 !important;
    color: var(--ib-muted) !important;
    font-weight: 900 !important;
    padding: 13px 18px !important;
    background: transparent !important;
}

.nav-tabs .nav-link:hover {
    color: var(--ib-green) !important;
    background: #fffaf0 !important;
}

.nav-tabs .nav-link.active {
    color: var(--ib-green) !important;
    background: #fffaf0 !important;
    border-bottom: 2px solid var(--ib-terracotta) !important;
}

/* =========================================================
   Dropdowns
========================================================= */

.dropdown-menu {
    border: 1px solid var(--ib-border) !important;
    border-radius: 16px !important;
    box-shadow: var(--ib-shadow-md) !important;
}

.dropdown-item {
    font-weight: 700;
    color: var(--ib-text);
}

.dropdown-item:hover {
    background: #f7f5ef !important;
    color: var(--ib-green) !important;
}

/* =========================================================
   Navbar
========================================================= */

.ib-navbar {
    background: var(--ib-navbar) !important;
    border-bottom: 1px solid var(--ib-border);
    min-height: var(--ib-navbar-height);
    height: var(--ib-navbar-height);
    box-shadow: 0 2px 12px rgba(18, 61, 48, 0.04);
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
}

.ib-navbar-brand-wrapper {
    background: var(--ib-navbar) !important;
    border-right: 1px solid var(--ib-border);
    width: var(--ib-sidebar-width) !important;
    min-width: var(--ib-sidebar-width) !important;
    height: var(--ib-navbar-height) !important;
    padding: 0 36px !important;
    display: flex !important;
    align-items: center !important;
}

.ib-brand-logo {
    display: flex !important;
    align-items: center !important;
    gap: 14px;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
}

.ib-brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--ib-green);
    color: var(--ib-gold-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.ib-brand-mark.mini {
    width: 42px;
    height: 42px;
    font-family: var(--ib-font-serif);
    font-size: 24px;
    font-weight: 800;
}

.ib-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.ib-brand-title-row {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.ib-brand-title-dark,
.ib-brand-title-green {
    font-family: var(--ib-font-serif);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.ib-brand-title-dark {
    color: #2c2921;
}

.ib-brand-title-green {
    color: var(--ib-green);
}

.ib-brand-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.7px;
    font-weight: 900;
    color: #8c887d;
    margin-top: 5px;
}

.ib-brand-logo-mini {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ib-navbar-menu-wrapper {
    background: var(--ib-navbar) !important;
    min-height: var(--ib-navbar-height);
    height: var(--ib-navbar-height);
    padding: 0 38px !important;
    width: calc(100% - var(--ib-sidebar-width));
    display: flex !important;
    align-items: center !important;
}

.ib-menu-toggle {
    background: transparent !important;
    border: none !important;
    color: #111111 !important;
    font-size: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1;
    width: 42px;
    height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.ib-menu-toggle:hover {
    color: var(--ib-green) !important;
}

.ib-navbar-actions {
    gap: 18px;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
}

.ib-navbar-actions .nav-item {
    margin: 0 !important;
    padding: 0 !important;
}

.ib-icon-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fffdf8;
    border: 1px solid var(--ib-border);
    color: var(--ib-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(18, 61, 48, 0.06);
    transition: all 0.2s ease;
    font-size: 18px;
}

.ib-icon-btn:hover {
    background: var(--ib-green);
    color: #ffffff;
    transform: translateY(-1px);
}

.ib-profile-dropdown-wrap {
    position: relative;
}

.ib-profile-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    background: #fffdf8;
    border: 1px solid var(--ib-border);
    border-radius: 999px;
    padding: 7px 18px 7px 7px !important;
    color: var(--ib-text) !important;
    box-shadow: 0 8px 20px rgba(18, 61, 48, 0.06);
    min-height: 52px;
    transition: all 0.2s ease;
}

.ib-profile-toggle:hover {
    background: var(--ib-green) !important;
    color: #ffffff !important;
    border-color: var(--ib-green) !important;
    transform: translateY(-1px);
}

.ib-profile-toggle:hover .ib-profile-avatar {
    background: #ffffff;
    color: var(--ib-green);
}

.ib-profile-toggle:hover .ib-profile-name,
.ib-profile-toggle:hover .ib-profile-arrow {
    color: #ffffff !important;
}

.ib-profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ib-green);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.ib-profile-name {
    font-weight: 900 !important;
    color: var(--ib-text) !important;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ib-profile-arrow {
    font-size: 12px;
    color: var(--ib-muted);
    transition: all 0.2s ease;
}

.ib-profile-dropdown {
    border: 1px solid var(--ib-border) !important;
    border-radius: 16px !important;
    box-shadow: var(--ib-shadow) !important;
    padding: 8px !important;
    min-width: 235px;
    margin-top: 10px !important;
}

.ib-profile-dropdown .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
    color: var(--ib-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ib-profile-dropdown .dropdown-item:hover {
    background: #f7f1e6 !important;
    color: var(--ib-green) !important;
}

.ib-dropdown-user {
    padding: 10px 12px;
}

.ib-dropdown-user strong {
    display: block;
    color: var(--ib-text);
    font-weight: 900;
    margin-bottom: 2px;
}

.ib-dropdown-user small {
    color: var(--ib-muted);
    font-size: 12px;
    font-weight: 600;
}

.ib-mobile-menu-btn {
    display: none !important;
    background: transparent !important;
    border: none !important;
    color: var(--ib-green) !important;
    font-size: 24px !important;
    padding: 6px 8px !important;
    line-height: 1;
}

/* Open profile dropdown on hover - desktop only */
@media (min-width: 992px) {
    .ib-profile-dropdown-wrap:hover .ib-profile-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .ib-navbar-brand-wrapper {
        width: 220px !important;
        min-width: 220px !important;
        padding: 0 16px !important;
    }

    .ib-navbar-menu-wrapper {
        width: calc(100% - 220px);
        padding: 0 16px !important;
    }

    .ib-brand-mark {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 18px;
    }

    .ib-brand-title-dark,
    .ib-brand-title-green {
        font-size: 21px;
    }

    .ib-brand-subtitle {
        font-size: 8px;
        letter-spacing: 1.6px;
    }

    .ib-icon-btn {
        width: 44px;
        height: 44px;
    }

    .ib-profile-toggle {
        min-height: 44px;
    }

    .ib-profile-avatar {
        width: 34px;
        height: 34px;
    }

    .ib-mobile-menu-btn {
        display: inline-flex !important;
    }
}

@media (max-width: 575px) {
    .ib-navbar-brand-wrapper {
        width: 74px !important;
        min-width: 74px !important;
    }

    .ib-brand-text,
    .ib-profile-name,
    .ib-profile-arrow,
    .ib-icon-btn {
        display: none !important;
    }

    .ib-navbar-menu-wrapper {
        width: calc(100% - 74px);
        padding: 0 12px !important;
    }

    .ib-brand-logo {
        display: none !important;
    }

    .ib-brand-logo-mini {
        display: flex !important;
    }
}

/* Navbar final alignment fix */
.ib-navbar {
    height: 90px !important;
    min-height: 90px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.ib-navbar-brand-wrapper {
    height: 90px !important;
    min-height: 90px !important;
    width: 290px !important;
    min-width: 290px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.ib-navbar-menu-wrapper {
    height: 90px !important;
    min-height: 90px !important;
    width: calc(100% - 290px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 46px !important;
}

.ib-menu-toggle {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.ib-navbar-actions {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    height: 90px !important;
}

/* layout top offset also match navbar height */
:root {
    --ib-navbar-height: 90px;
}

/* =========================================================
   Sidebar
========================================================= */

.ib-sidebar {
    background: var(--ib-green) !important;
    padding: 0 !important;
    position: fixed !important;
    top: var(--ib-navbar-height) !important;
    left: 0 !important;
    bottom: 0 !important;
    width: var(--ib-sidebar-width) !important;
    min-width: var(--ib-sidebar-width) !important;
    height: calc(100vh - var(--ib-navbar-height)) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 999 !important;
    border-right: none !important;
}

.ib-sidebar::-webkit-scrollbar {
    width: 4px;
}

.ib-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.ib-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
}

.ib-sidebar-inner {
    padding: 22px 0 30px !important;
}

.ib-sidebar .nav {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ib-sidebar .nav .nav-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ib-sidebar .nav .nav-link {
    position: relative !important;
    min-height: 58px !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    background: transparent !important;
    color: rgba(251, 249, 244, 0.88) !important;
    border-radius: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    transition: color 0.2s ease !important;
}

.ib-sidebar .nav .nav-link:hover {
    background: transparent !important;
    color: var(--ib-gold-soft) !important;
}

.ib-sidebar .nav .nav-link.active {
    background: transparent !important;
    color: #ffffff !important;
}

.ib-menu-icon {
    width: 28px !important;
    min-width: 28px !important;
    height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: inherit !important;
    background: transparent !important;
}

.ib-menu-icon i {
    font-size: 21px !important;
    color: inherit !important;
    line-height: 1 !important;
}

/* Main Menu Text */
.ib-sidebar .menu-title {
    font-family: var(--ib-font-serif) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: inherit !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Arrow Icon */
.ib-sidebar .menu-arrow {
    margin-left: auto !important;
    font-size: 12px !important;
    color: inherit !important;
    transition: transform 0.2s ease !important;
}

/* Arrow Rotate On Open */
.ib-sidebar .nav-link[aria-expanded="true"] .menu-arrow {
    transform: rotate(90deg);
}

/* Collapse */
.ib-sidebar .collapse:not(.show) {
    display: none !important;
}

.ib-sidebar .collapse.show {
    display: block !important;
}

/* Submenu Clean */
.ib-sidebar .sub-menu {
    padding: 4px 0 10px 42px !important;
    margin: 0 !important;
    width: 100% !important;
    background: transparent !important;
}

.ib-sidebar .sub-menu .nav-item {
    width: 100% !important;
    margin: 0 !important;
}

.ib-sidebar .sub-menu .nav-link {
    position: relative !important;
    min-height: 42px !important;
    width: 100% !important;
    padding: 0 10px 0 0 !important;
    background: transparent !important;
    color: rgba(251, 249, 244, 0.78) !important;
    font-family: var(--ib-font-serif) !important;
    font-size: 16.5px !important;
    font-weight: 800 !important;
    gap: 0 !important;
    transition: color 0.2s ease !important;
}

.ib-sidebar .sub-menu .nav-link::before {
    display: none !important;
}

.ib-sidebar .sub-menu .nav-link:hover {
    background: transparent !important;
    color: var(--ib-gold-soft) !important;
}

.ib-sidebar .sub-menu .nav-link.active {
    background: transparent !important;
    color: var(--ib-gold-soft) !important;
}

/* Submenu Active Dot */
.ib-sidebar .sub-menu .nav-link.active::after {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ib-gold-soft);
    transform: translateY(-50%);
}

/* Sidebar icon only */
body.sidebar-icon-only .ib-sidebar {
    width: var(--ib-sidebar-icon-width) !important;
    min-width: var(--ib-sidebar-icon-width) !important;
}

body.sidebar-icon-only .ib-sidebar .nav-link {
    justify-content: center !important;
    padding: 0 !important;
}

body.sidebar-icon-only .ib-sidebar .menu-title,
body.sidebar-icon-only .ib-sidebar .menu-arrow,
body.sidebar-icon-only .ib-sidebar .sub-menu {
    display: none !important;
}

body.sidebar-icon-only .ib-menu-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
}

/* Mobile Sidebar */
@media (max-width: 991px) {
    .ib-sidebar {
        top: var(--ib-navbar-height) !important;
        height: calc(100vh - var(--ib-navbar-height)) !important;
        transform: translateX(-100%);
        z-index: 999 !important;
    }

    body.sidebar-open .ib-sidebar {
        transform: translateX(0);
    }
}

/* =========================================================
   Footer
========================================================= */

.ib-footer {
    background: transparent !important;
    border: none !important;
    padding: 0 34px 24px !important;
}

.ib-footer-card {
    background: #fffdf8;
    border: 1px solid var(--ib-border);
    border-radius: 18px;
    padding: 16px 22px;
    box-shadow: 0 10px 25px rgba(18, 61, 48, 0.05);
}

.ib-footer-left,
.ib-footer-right {
    color: var(--ib-muted);
    font-size: 13px;
    font-weight: 600;
}

.ib-footer-left a {
    color: var(--ib-green);
    font-weight: 800;
    margin: 0 4px;
}

.ib-footer-left a:hover {
    color: var(--ib-gold);
}

.ib-footer-right strong {
    color: var(--ib-text);
    font-weight: 800;
}

/* =========================================================
   Breadcrumb / Page Header
========================================================= */

.ib-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 22px;
}

.ib-page-kicker {
    display: block;
    color: var(--ib-terracotta);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ib-page-title {
    font-family: var(--ib-font-serif);
    font-size: 34px;
    line-height: 1.05;
    margin: 0;
    color: var(--ib-text);
    font-weight: 800;
}

.ib-breadcrumb-wrap {
    background: #fffdf8;
    border: 1px solid var(--ib-border);
    border-radius: 999px;
    padding: 9px 16px;
    box-shadow: 0 8px 18px rgba(18, 61, 48, 0.04);
}

.ib-breadcrumb {
    background: transparent !important;
    padding: 0 !important;
}

.ib-breadcrumb .breadcrumb-item {
    font-size: 13px;
    font-weight: 700;
    color: var(--ib-muted);
}

.ib-breadcrumb .breadcrumb-item a {
    color: var(--ib-muted);
    text-decoration: none;
}

.ib-breadcrumb .breadcrumb-item a:hover {
    color: var(--ib-green);
}

.ib-breadcrumb .breadcrumb-item.active {
    color: var(--ib-green);
    font-weight: 800;
}

.ib-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #a59d8d;
    font-weight: 800;
}

/* =========================================================
   Dashboard Page
========================================================= */

.dashboard-page {
    width: 100%;
}

.ib-welcome-card {
    background: linear-gradient(135deg, var(--ib-green), #174f3d);
    border-radius: 22px;
    padding: 28px 32px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 18px 40px rgba(18, 61, 48, 0.16);
    position: relative;
    overflow: hidden;
}

.ib-welcome-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.ib-welcome-kicker {
    display: block;
    color: var(--ib-gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ib-welcome-card h3 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 6px;
}

.ib-welcome-card p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
    max-width: 620px;
}

.ib-welcome-card .btn-danger {
    background: #fffaf0 !important;
    border-color: #fffaf0 !important;
    color: var(--ib-green) !important;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.ib-stat-card {
    height: 100%;
}

.ib-stat-card .card-body {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 118px;
}

.ib-stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--ib-green-soft-2);
    color: var(--ib-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.ib-stat-card span {
    color: var(--ib-muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ib-stat-card h3 {
    font-family: var(--ib-font-sans);
    font-size: 28px;
    font-weight: 800;
    margin: 4px 0 0;
    color: var(--ib-text);
}

.ib-dashboard-card .card-title {
    font-size: 26px;
}

.ib-quick-link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fffaf0;
    border: 1px solid var(--ib-border);
    border-radius: 18px;
    padding: 16px;
    color: var(--ib-text);
    transition: all 0.22s ease;
    height: 100%;
}

.ib-quick-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(18, 61, 48, 0.08);
    border-color: rgba(18, 61, 48, 0.25);
    color: var(--ib-text);
}

.ib-quick-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--ib-green);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ib-quick-link strong {
    display: block;
    font-weight: 800;
    color: var(--ib-text);
    margin-bottom: 2px;
}

.ib-quick-link span {
    display: block;
    color: var(--ib-muted);
    font-size: 12.5px;
    line-height: 1.35;
}

.ib-role-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ib-role-item {
    background: #fffaf0;
    border: 1px solid var(--ib-border);
    border-radius: 16px;
    padding: 14px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ib-role-item strong {
    display: block;
    color: var(--ib-text);
    font-weight: 800;
    margin-bottom: 2px;
}

.ib-role-item span:not(.badge) {
    display: block;
    color: var(--ib-muted);
    font-size: 12px;
}

.ib-empty-state {
    min-height: 180px;
    background: #fffaf0;
    border: 1px dashed var(--ib-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--ib-muted);
}

.ib-empty-state i {
    font-size: 30px;
    color: var(--ib-gold);
    margin-bottom: 10px;
}

.ib-empty-state p {
    margin: 0;
    font-weight: 700;
}

/* =========================================================
   Vendor List Page
========================================================= */

.vendor-index-page {
    width: 100%;
}

.ib-list-card .card-body {
    padding: 26px;
}

.ib-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.ib-card-kicker {
    display: block;
    color: var(--ib-terracotta);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ib-total-pill {
    background: #fffaf0;
    border: 1px solid var(--ib-border);
    border-radius: 999px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ib-text);
    box-shadow: 0 8px 18px rgba(18, 61, 48, 0.04);
    white-space: nowrap;
}

.ib-total-pill i {
    color: var(--ib-green);
}

.ib-total-pill span {
    font-size: 12px;
    font-weight: 800;
    color: var(--ib-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.ib-total-pill strong {
    font-size: 16px;
    font-weight: 900;
    color: var(--ib-green);
}

.ib-table-wrap {
    border-radius: 16px;
}

.ib-data-table {
    margin-bottom: 0 !important;
}

.ib-table-index {
    width: 30px;
    height: 30px;
    background: var(--ib-green-soft-2);
    color: var(--ib-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
}

.ib-vendor-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ib-vendor-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--ib-green);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.ib-vendor-name {
    font-weight: 900;
    color: var(--ib-text);
    margin-bottom: 3px;
}

.ib-vendor-sub {
    font-size: 12px;
    color: var(--ib-muted);
    font-weight: 600;
}

.ib-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px !important;
}

/* =========================================================
   Vendor Show Page
========================================================= */

.vendor-show-page {
    width: 100%;
}

.ib-detail-card .card-body {
    padding: 28px;
}

.ib-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.ib-detail-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ib-vendor-detail-avatar {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: var(--ib-green);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 12px 28px rgba(18, 61, 48, 0.16);
}

.ib-detail-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ib-summary-box {
    height: 100%;
    background: #fffaf0;
    border: 1px solid var(--ib-border);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 8px 18px rgba(18, 61, 48, 0.04);
}

.ib-summary-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--ib-green-soft-2);
    color: var(--ib-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ib-summary-box span {
    display: block;
    color: var(--ib-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
}

.ib-summary-box strong {
    display: block;
    color: var(--ib-text);
    font-weight: 900;
    font-size: 15px;
}

.ib-vendor-tabs {
    margin-top: 8px;
}

.ib-vendor-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ib-tab-content {
    padding-top: 24px;
}

/* =========================================================
   Vendor Tabs Common
========================================================= */

.ib-tab-section {
    background: #fffdf8;
    border: 1px solid var(--ib-border);
    border-radius: 18px;
    padding: 24px;
}

.ib-tab-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ib-border);
}

.ib-tab-section-header h5 {
    font-family: var(--ib-font-serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--ib-text);
    margin: 0;
}

.ib-readonly-field label {
    display: block;
    color: var(--ib-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
}

.ib-readonly-field .form-control {
    background: #ffffff !important;
    border: 1px solid var(--ib-border) !important;
    border-radius: 14px !important;
    min-height: 48px;
    color: var(--ib-text) !important;
    font-weight: 700;
}

.ib-status-box {
    background: #ffffff;
    border: 1px solid var(--ib-border);
    border-radius: 16px;
    padding: 15px 16px;
    min-height: 76px;
}

.ib-status-box span {
    display: block;
    color: var(--ib-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
}

.ib-status-box strong {
    font-size: 15px;
    font-weight: 900;
}

/* =========================================================
   Vendor Documents Tab
========================================================= */

.ib-document-box {
    background: #ffffff;
    border: 1px solid var(--ib-border);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.ib-document-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.ib-document-icon.excel {
    background: var(--ib-green-soft-2);
    color: var(--ib-green);
}

.ib-document-icon.pdf {
    background: #f7dedc;
    color: #b94242;
}

.ib-document-content label {
    display: block;
    color: var(--ib-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 10px;
}

.ib-link-field {
    display: block;
    background: #ffffff;
    border: 1px solid var(--ib-border);
    border-radius: 14px;
    min-height: 48px;
    padding: 13px 15px;
    color: var(--ib-green);
    font-weight: 800;
    word-break: break-all;
}

.ib-link-field:hover {
    background: #fffaf0;
    color: var(--ib-terracotta);
}

/* =========================================================
   Vendor Review Tab
========================================================= */

.ib-check-box {
    background: #ffffff;
    border: 1px solid var(--ib-border);
    border-radius: 18px;
    padding: 16px 18px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.ib-check-box span:not(.badge) {
    display: block;
    color: var(--ib-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 5px;
}

.ib-check-box strong {
    display: block;
    color: var(--ib-text);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.ib-review-form-box {
    margin-top: 10px;
    background: #ffffff;
    border: 1px solid var(--ib-border);
    border-radius: 18px;
    padding: 24px;
}

.ib-review-form-header {
    border-bottom: 1px solid var(--ib-border);
    padding-bottom: 18px;
}

.ib-review-form-header h5 {
    font-family: var(--ib-font-serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--ib-text);
    margin: 0;
}

/* =========================================================
   Mobile Responsive
========================================================= */

@media (max-width: 991px) {
    :root {
        --ib-navbar-height: 74px;
    }

    .ib-page-body-wrapper {
        padding-top: var(--ib-navbar-height) !important;
    }

    .ib-main-panel {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .ib-main-content {
        padding: 24px 18px 18px !important;
    }

    .ib-navbar {
        min-height: var(--ib-navbar-height);
        height: var(--ib-navbar-height);
    }

    .ib-navbar-brand-wrapper {
        width: 210px !important;
        min-width: 210px !important;
        height: var(--ib-navbar-height) !important;
        padding: 0 12px !important;
    }

    .ib-navbar-menu-wrapper {
        width: calc(100% - 210px);
        min-height: var(--ib-navbar-height);
        height: var(--ib-navbar-height);
        padding: 0 14px !important;
    }

    .ib-brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 17px;
    }

    .ib-brand-title {
        font-size: 20px;
    }

    .ib-brand-subtitle {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .ib-sidebar {
        top: var(--ib-navbar-height) !important;
        height: calc(100vh - var(--ib-navbar-height)) !important;
        transform: translateX(-100%);
        z-index: 999 !important;
    }

    body.sidebar-open .ib-sidebar {
        transform: translateX(0);
    }

    .ib-sidebar-inner {
        padding: 18px 12px 28px;
    }
}

@media (max-width: 767px) {
    .ib-main-content {
        padding: 20px 14px 16px !important;
    }

    .card .card-body {
        padding: 18px;
    }

    .ib-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
    }

    .ib-page-title {
        font-size: 28px;
    }

    .ib-breadcrumb-wrap {
        width: 100%;
        border-radius: 14px;
        padding: 10px 14px;
    }

    .ib-footer {
        padding: 0 16px 18px !important;
    }

    .ib-footer-card {
        padding: 14px 16px;
        text-align: center;
    }

    .ib-welcome-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .ib-welcome-card h3 {
        font-size: 30px;
    }

    .ib-stat-card .card-body {
        min-height: 104px;
    }

    .ib-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ib-total-pill {
        width: 100%;
        justify-content: space-between;
        border-radius: 14px;
    }

    .ib-list-card .card-body,
    .ib-detail-card .card-body {
        padding: 18px;
    }

    .ib-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ib-detail-actions {
        width: 100%;
        justify-content: space-between;
    }

    .ib-detail-title-wrap {
        align-items: flex-start;
    }

    .ib-vendor-detail-avatar {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 22px;
    }

    .ib-tab-section {
        padding: 18px;
    }

    .ib-tab-section-header {
        flex-direction: column;
    }

    .ib-check-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .ib-review-form-box {
        padding: 18px;
    }
}

@media (max-width: 575px) {
    .ib-navbar-brand-wrapper {
        width: 74px !important;
        min-width: 74px !important;
    }

    .ib-brand-text,
    .ib-profile-name,
    .ib-profile-arrow,
    .ib-icon-btn {
        display: none !important;
    }

    .ib-navbar-menu-wrapper {
        width: calc(100% - 74px);
    }

    .ib-brand-logo {
        display: none !important;
    }

    .ib-brand-logo-mini {
        display: flex !important;
    }
}

/* =========================================================
   Common Font Weight + Input Text Color Fix
========================================================= */

/* Overall normal text little thin */
body,
.content-wrapper,
.card,
.card-body,
.table,
.table td,
.table th,
.form-control,
.form-select,
select,
textarea,
input,
label,
p,
span,
small {
    font-weight: 500 !important;
}

/* Input / textarea / select typed text black and lighter */
.form-control,
.form-select,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="file"],
input[type="date"],
input[type="time"] {
    color: #111111 !important;
    font-weight: 500 !important;
}

/* Placeholder light */
.form-control::placeholder,
textarea::placeholder,
input::placeholder {
    color: #9b9b9b !important;
    font-weight: 500 !important;
}

/* Select options */
select option {
    color: #111111 !important;
    font-weight: 500 !important;
}

/* Labels slightly strong but not too bold */
.form-label,
label {
    color: #0b3026 !important;
    font-weight: 600 !important;
}

/* Table text normal */
.table td,
.table td strong,
.table tbody td {
    color: #111111 !important;
    font-weight: 500 !important;
}

/* Table heading can stay readable */
.table th,
.table thead th {
    font-weight: 700 !important;
}

/* Card title little less bold */
.card-title,
.card h4,
.card-header h4 {
    font-weight: 700 !important;
}

/* Buttons keep bold */
.btn,
button {
    font-weight: 700 !important;
}

/* =========================================================
   Common Soft Cards + Bootstrap Color Override
========================================================= */

/* Common cards like reference */
.card {
    background: #fffdf8 !important;
    border: 1px solid #e8deca !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 22px rgba(18, 61, 48, 0.05) !important;
}

.card-header {
    background: #fffdf8 !important;
    border-bottom: 1px solid #eadfcb !important;
    border-radius: 16px 16px 0 0 !important;
}

.card-body {
    background: #fffdf8 !important;
}

/* Dashboard / quick cards soft */
.ib-stat-card,
.ib-quick-link,
.ib-role-list .ib-role-item,
.ib-list-card,
.ib-detail-card {
    background: #fffdf8 !important;
    border: 1px solid #e8deca !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 22px rgba(18, 61, 48, 0.05) !important;
}

/* =========================================================
   Soft Badge Colors
========================================================= */

.badge {
    border-radius: 8px !important;
    font-weight: 700 !important;
    padding: 7px 12px !important;
}

/* Success */
.badge.bg-success,
.bg-success {
    background-color: #e7f6ee !important;
    color: #07804d !important;
}

/* Danger */
.badge.bg-danger,
.bg-danger {
    background-color: #fdecec !important;
    color: #c43d3d !important;
}

/* Warning */
.badge.bg-warning,
.bg-warning {
    background-color: #fff4df !important;
    color: #b86b00 !important;
}

/* Primary */
.badge.bg-primary,
.bg-primary {
    background-color: #e8f1f8 !important;
    color: #176b8f !important;
}

/* Info */
.badge.bg-info,
.bg-info {
    background-color: #e8f5fb !important;
    color: #2583a5 !important;
}

/* Secondary */
.badge.bg-secondary,
.bg-secondary {
    background-color: #f0f0ee !important;
    color: #5d625d !important;
}

/* Dark */
.badge.bg-dark,
.bg-dark {
    background-color: #e7eee9 !important;
    color: #0d3b2f !important;
}

/* Light */
.badge.bg-light,
.bg-light {
    background-color: #fbf7ef !important;
    color: #123d30 !important;
}

/* =========================================================
   Soft Button Colors
========================================================= */

.btn {
    border-radius: 8px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

/* Primary / Edit */
.btn-primary {
    background: #e8f1f8 !important;
    border-color: #e8f1f8 !important;
    color: #176b8f !important;
}

.btn-primary:hover {
    background: #d9eaf4 !important;
    border-color: #d9eaf4 !important;
    color: #125774 !important;
}

/* Success */
.btn-success {
    background: #e7f6ee !important;
    border-color: #e7f6ee !important;
    color: #07804d !important;
}

.btn-success:hover {
    background: #d6f0e4 !important;
    border-color: #d6f0e4 !important;
    color: #056d41 !important;
}

/* Warning / Inactive */
.btn-warning {
    background: #fff4df !important;
    border-color: #fff4df !important;
    color: #b86b00 !important;
}

.btn-warning:hover {
    background: #ffebc5 !important;
    border-color: #ffebc5 !important;
    color: #985900 !important;
}

/* Danger / Delete */
.btn-danger {
    background: #fdecec !important;
    border-color: #fdecec !important;
    color: #c43d3d !important;
}

.btn-danger:hover {
    background: #fadada !important;
    border-color: #fadada !important;
    color: #aa3030 !important;
}

/* Info / View */
.btn-info {
    background: #e8f5fb !important;
    border-color: #e8f5fb !important;
    color: #2583a5 !important;
}

.btn-info:hover {
    background: #d8eef8 !important;
    border-color: #d8eef8 !important;
    color: #1f6f8c !important;
}

/* Secondary */
.btn-secondary {
    background: #f0f0ee !important;
    border-color: #f0f0ee !important;
    color: #5d625d !important;
}

.btn-secondary:hover {
    background: #e5e5e2 !important;
    border-color: #e5e5e2 !important;
    color: #454a45 !important;
}

/* Dark green custom buttons */
.btn.text-white,
button.text-white,
a.text-white {
    color: #ffffff !important;
}

/* =========================================================
   Form + Table Softer Look
========================================================= */

.form-control,
.form-select,
select,
textarea,
input {
    background: #fffdf8 !important;
    border: 1px solid #e5dccb !important;
    border-radius: 12px !important;
    color: #111111 !important;
    font-weight: 500 !important;
}

.form-control:focus,
.form-select:focus,
select:focus,
textarea:focus,
input:focus {
    border-color: #123d30 !important;
    box-shadow: 0 0 0 2px rgba(18, 61, 48, 0.10) !important;
}

.form-control::placeholder,
textarea::placeholder,
input::placeholder {
    color: #b4b4b4 !important;
    font-weight: 500 !important;
}

.table {
    color: #111111 !important;
}

.table thead th {
    background: #f6f1e7 !important;
    color: #123d30 !important;
    font-weight: 700 !important;
    border-color: #e4dac8 !important;
}

.table tbody td {
    color: #111111 !important;
    font-weight: 500 !important;
    border-color: #e8deca !important;
}

.table tbody td strong {
    color: #111111 !important;
    font-weight: 600 !important;
}