/* ═══════════════ UNIFIED RESPONSIVE SIDEBAR ═══════════════ */

/* Main Layout adjustments */
@media (min-width: 1200px) {
    body {
        transition: padding-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-left: 250px;
        /* Default expanded width */
    }

    body.sidebar-collapsed {
        padding-left: 80px;
        /* Collapsed width */
    }

    .sidebar-logo-area .logo-wrap {
        width: 190px;
    }
}

.sidebar-web {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.04);
    z-index: 1060;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid #eef0f4;
    z-index: 1999;
}

/* Mobile Off-canvas logic */
@media (max-width: 701px) {
    .sidebar-web .brand-header-area .full-logo {
        height: 35px !important;
    }

    .sidebar-logo-area .logo-wrap {
        width: auto;
    }
}

@media (max-width: 1199.98px) {
    .sidebar-web {
        transform: translateX(-100%);
        z-index: 2050;
        /* Ensure it floats above the 1999 overlay */
        box-shadow: none;
    }

    .sidebar-web.open {
        transform: translateX(0);
        box-shadow: 4px 0 32px rgba(0, 0, 0, 0.15);
        /* Strong shadow for depth */
    }
}

.sidebar-web::-webkit-scrollbar {
    width: 4px;
}

.sidebar-web::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

@media (min-width: 1200px) {
    .sidebar-collapsed .sidebar-web {
        width: 80px;
    }
}

/* Sidebar Logo Area / Brand Header Area */
.sidebar-web .brand-header-area {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(10px);
    z-index: 10;
    white-space: nowrap;
    overflow: hidden;
    border-bottom: 1px solid rgba(var(--primary-rgb, 13, 110, 253), 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.sidebar-web .brand-header-area .full-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    /* image-rendering: crisp-edges; */
    image-rendering: auto !important;
    transition: opacity 0.2s, width 0.2s;
}

@media (min-width: 1200px) {
    .sidebar-collapsed .sidebar-web .brand-header-area {
        justify-content: center;
        padding: 0 10px;
        gap: 4px;
        flex-direction: column;
    }

    .sidebar-collapsed .sidebar-web .brand-header-area .full-logo {
        display: none;
    }

    .sidebar-collapsed .sidebar-web .logo-wrap {
        width: 100%;
    }

    .sidebar-collapsed .sidebar-web .logo-wrap>a {
        justify-content: center !important;
    }
}

.sidebar-web .logo-icon {
    display: none;
    height: auto;
    width: auto;
    max-width: 100%;
    margin: auto;
    object-fit: contain;
    /* image-rendering: -webkit-optimize-contrast; */
    /* image-rendering: crisp-edges; */
}

@media (min-width: 1200px) {
    .sidebar-collapsed .sidebar-web .logo-icon {
        display: block;
    }
}

.sidebar-web .sidebar-toggle-btn {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-web .sidebar-toggle-btn:hover {
    background: #f1f5f9;
    color: var(--primary);
}

/* Menu Items Container */
.sidebar-web .sidebar-menu {
    padding: 10px 10px 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Section Labels */
.sidebar-web .menu-label {
    font-size: clamp(0.65rem, 0.6vw + 0.3rem, 0.7rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #64748b75;
    padding: 16px 10px 6px 10px;
    white-space: nowrap;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
}

.sidebar-web .menu-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #e2e8f0 0%, transparent 100%);
    margin-left: 12px;
}

@media (min-width: 1200px) {
    .sidebar-collapsed .sidebar-web .menu-label {
        opacity: 0;
        height: 0;
        padding: 0;
        overflow: hidden;
    }
}

/* Standard Links */
.sidebar-web .menu-item {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
}

.sidebar-web .menu-item::before {
    content: '';
    position: absolute;
    left: 0px;
    top: auto;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #16106a14;
    border-radius: 50px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    opacity: 0;
}

.sidebar-web .menu-item i:first-child {
    font-size: 1.15rem;
    min-width: 24px;
    text-align: center;
    margin-right: 10px;
    transition: color 0.3s, transform 0.3s ease;
}

.sidebar-web .menu-item .menu-text {
    flex-grow: 1;
    transition: opacity 0.2s, transform 0.3s ease;
}

.sidebar-web .menu-item:hover,
.sidebar-web .menu-item:focus {
    background: linear-gradient(135deg, rgba(var(--primary-rgb, 13, 110, 253), 0.08) 0%, rgba(var(--primary-rgb, 13, 110, 253), 0.01) 100%);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb, 13, 110, 253), 0.05);
    outline: none;
    transform: translateY(-1px);
}

.sidebar-web .menu-item:hover .menu-text,
.sidebar-web .menu-item:focus .menu-text {
    transform: translateX(5px);
    font-weight: 700;
}

.sidebar-web .menu-item:hover i:first-child,
.sidebar-web .menu-item:focus i:first-child {
    color: var(--primary);
    transform: scale(1.15) rotate(3deg);
}

.sidebar-web .menu-item:hover::before,
.sidebar-web .menu-item:focus::before {
    transform: scaleY(0.6);
    opacity: 0.8;
}

.sidebar-web .menu-item.active {
    background: linear-gradient(90deg, rgba(var(--primary-rgb, 13, 110, 253), 0.22) 0%, rgba(var(--primary-rgb, 13, 110, 253), 0.12) 100%);
    color: var(--primary);
    font-weight: 700;
    box-shadow: none;
    border: none;
}

.sidebar-web .menu-item.active:hover {
    color: var(--primary);
}

.sidebar-web .menu-item.active::before {
    display: none;
}

.sidebar-web .menu-item.active i:first-child,
.sidebar-web .menu-item.active .menu-arrow,
.sidebar-web .menu-item.active:hover i:first-child {
    color: var(--primary);
}

/* Collapsed state item adjustments */
@media (min-width: 1200px) {
    .sidebar-collapsed .sidebar-web .menu-item {
        justify-content: center;
        padding: 12px;
        position: relative;
    }

    .sidebar-collapsed .sidebar-web .menu-item i:first-child {
        margin-right: 0;
        font-size: 1.3rem;
    }

    .sidebar-collapsed .sidebar-web .menu-text,
    .sidebar-collapsed .sidebar-web .menu-arrow {
        display: none;
    }

    /* Highlight parent menu item in collapsed state if it has an active submenu item */
    .sidebar-collapsed .sidebar-web .menu-item:has(+ .collapse .submenu-item.active) {
        background: linear-gradient(90deg, rgba(var(--primary-rgb, 13, 110, 253), 0.22) 0%, rgba(var(--primary-rgb, 13, 110, 253), 0.12) 100%);
        border: none;
        box-shadow: none;
    }

    .sidebar-collapsed .sidebar-web .menu-item:has(+ .collapse .submenu-item.active) i:first-child {
        color: var(--primary);
    }
}

/* Accordion Menu */
.sidebar-web .menu-accordion {
    background: transparent;
}

.sidebar-web .menu-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.sidebar-web .menu-item[aria-expanded="true"] .menu-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.sidebar-web .menu-item[aria-expanded="true"] {
    background-color: #f8fafc;
    color: var(--primary);
}

/* Submenu Container */
.sidebar-web .submenu {
    list-style: none;
    padding: 2px 0 2px 16px;
    margin: 2px 0 4px 16px;
    border-left: 1px solid #cbd5e1;
}

.sidebar-web .submenu .submenu-item {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    color: #64748b;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sidebar-web .submenu .submenu-item:hover {
    color: var(--primary);
    background: #f8fafc;
    transform: translateX(4px);
}

.sidebar-web .submenu .submenu-item i {
    font-size: 1rem;
    margin-right: 8px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.sidebar-web .submenu .submenu-item:hover i {
    transform: scale(1.1);
    opacity: 1;
}

.sidebar-web .submenu .submenu-item.active {
    background: rgba(var(--primary-rgb, 13, 110, 253), 0.08);
    color: var(--primary);
    font-weight: 700;
    border-radius: 8px;
}

.sidebar-web .submenu .submenu-item.active:hover {
    background: rgba(var(--primary-rgb, 13, 110, 253), 0.12);
    transform: none;
    /* override the translateX so it feels like a solid button */
}

.sidebar-web .submenu .submenu-item.active>i:first-child,
.sidebar-web .submenu .submenu-item.active>span>i:first-child {
    background: var(--primary);
    color: #ffffff !important;
    padding: 3px 7px;
    border-radius: 6px;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(var(--primary-rgb, 13, 110, 253), 0.25);
    margin-right: 10px;
}

.sidebar-web .submenu .submenu-item.active>i:last-child {
    color: var(--primary);
    opacity: 1;
}

/* Disable submenu expansion when collapsed */
@media (min-width: 1200px) {
    .sidebar-collapsed .sidebar-web .collapse {
        /* display: none !important; */
    }

    .sidebar-collapsed {
        .sidebar-web .submenu {
            padding-left: 5px;
            margin-left: 0;
        }

        .submenu-text {
            display: none;
        }

        .submenu li .collapse ul.submenu {
            margin-left: 10px;
        }

        .submenu .submenu-item i {
            margin-right: 0px;
        }

        .sidebar-web .submenu .submenu-item {
            justify-content: center;
        }

        .sidebar-web .submenu .submenu-item.active {
            background: transparent;
            color: var(--primary);
        }

        .sidebar-web .submenu .submenu-item.active i,
        .sidebar-web .submenu .submenu-item.active span i {
            margin-right: 0;
        }

        .modal {
            z-index: 1999;
        }

    }

    body .modal {
        z-index: 2000 !important;
    }

    body .modal#rejectionModal {
        z-index: 2020 !important;
    }

    body .modal-backdrop {
        z-index: 1998 !important;
    }

    /* body .modal-backdrop~.modal-backdrop {
        z-index: 2015 !important;
    } */

}

/* Ensure the left hamburger is hidden on desktop since we have the sidebar */
@media (min-width: 1200px) {
    #openSidebar.hide-desktop {
        display: none !important;
    }

    aside+.top-header,
    aside+.news-ticker-bar+.top-header {
        /* z-index: 1999; */
    }

    .top-header {
        border-bottom: 1px solid #eef0f4;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    }

    /* Edge toggle button (desktop only) */
    #toggleDesktopSidebar {
        position: fixed;
        top: 50%;
        left: 0px;
        margin-left: 245px;
        transform: translate(-50%, -50%);
        width: 35px;
        height: 35px;
        background: #ffffff;
        border: 1px solid #eef0f4;
        border-radius: 50%;
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease, background 0.2s;
        padding: 0;
    }

    .sidebar-collapsed #toggleDesktopSidebar {
        left: 0px;
        margin-left: 80px;
    }

    .sidebar-web+.sidebar-toggle-btn {
        /* margin-top: 25px; */
    }

    .news-ticker-bar+.sidebar-toggle-btn {
        /* margin-top: 25px; */
    }

    #toggleDesktopSidebar i {
        font-size: clamp(1rem, 1vw + 0.85rem, 1.85rem);
        color: #64748b;
        transition: transform 0.3s ease, color 0.2s;
        line-height: normal;
    }

    #toggleDesktopSidebar:hover {
        background: var(--primary);
        border-color: var(--primary);
    }

    #toggleDesktopSidebar:hover i {
        color: #ffffff;
    }
}

/* Custom Support Tooltip */
.support-contact-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

.support-tooltip {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 420px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18), 0 4px 18px rgba(15, 23, 42, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9) rotate(-1.5deg);
    transform-origin: top left;
    transition:
        opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 0.35s,
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9999;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.support-contact-link:hover .support-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) rotate(0deg);
}

.support-tooltip::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 22px;
    width: 14px;
    height: 14px;
    background: #eaf3ff;
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    transform: rotate(45deg);
    border-radius: 2px;
    z-index: 1;
}

.support-card-img-wrap {
    width: 170px;
    position: relative;
    flex-shrink: 0;
    background: #14b8a6;
    overflow: hidden;
    border-radius: 16px 0 0 16px;
}

.support-card-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 45%, rgba(15, 23, 42, 0.75) 100%);
    pointer-events: none;
    z-index: 1;
}

/* @keyframes gradientPulse {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
} */

.support-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.33, 1), filter 0.3s ease;
    animation: imagePulseFloat 2.8s ease-in-out infinite alternate;
}

@keyframes imagePulseFloat {
    0% {
        transform: scale(1.02) translate(0, 0);
        filter: saturate(0.96) brightness(0.98) contrast(0.99);
    }

    50% {
        transform: scale(1.04) translate(-1px, -2px);
        filter: saturate(1.02) brightness(1.02) contrast(1.01);
    }

    100% {
        transform: scale(1.05) translate(1px, -5px);
        filter: saturate(1.06) brightness(1.04) contrast(1.03);
    }
}

.support-contact-link:hover .support-card-img {
    transform: scale(1.12) translate(-1px, -4px) rotate(0.8deg);
    filter: saturate(1.1) brightness(1.06) contrast(1.05) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.support-live-dot-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    line-height: 1;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.support-contact-link:hover .support-live-dot-badge {
    bottom: 15px;
    transform: translateX(-50%) scale(1.06);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.badge-online {
    background: rgba(37, 211, 102, 0.22);
    border-color: rgba(37, 211, 102, 0.45) !important;
    color: #25d366;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-shadow: 0 0 4px rgba(37, 211, 102, 0.2);
}

.badge-offline {
    background: rgba(148, 163, 184, 0.22);
    border-color: rgba(148, 163, 184, 0.4) !important;
    color: #cbd5e1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.live-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px currentColor;
}

.badge-online .live-pulse-dot {
    background-color: #25d366;
    animation: livePulse 1.6s infinite;
}

.badge-offline .live-pulse-dot {
    background-color: #94a3b8;
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(0.9);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
        transform: scale(1.15);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(0.9);
    }
}

.support-card-body {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    min-width: 0;
}

.support-agent-meta {
    margin-bottom: 2px;
}

.support-agent-name {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 4px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #c026d3 100%);
    /* background: #000; */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(192, 38, 211, 0.15);
}

.support-agent-role {
    font-size: 0.65rem;
    color: var(--primary);
    background: rgba(var(--bs-primary-rgb), 0.1);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 20px;
}

.support-info-item {
    font-size: 0.72rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 650;
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #f1f5f9;
    width: fit-content;
}

.support-message {
    font-size: 0.72rem;
    color: #475569;
    line-height: 1.45;
    margin: 0;
    word-break: break-word;
}

.support-action-btn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: auto;
    transition: filter 0.2s, transform 0.1s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.support-action-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.support-contact-link:hover .support-action-btn::after {
    left: 100%;
    transition: 0.8s ease-in-out;
}

.support-action-btn:hover {
    filter: brightness(1.08);
}

.support-action-btn:active {
    transform: scale(0.98);
}

/* Ticker Avatar Animation */
.ticker-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    animation: pulse-ticker-avatar 2s infinite;
    border: 1px solid #eef0f4;
    background: #ffffff;
}

@keyframes pulse-ticker-avatar {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(13, 110, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

button.btn-close[data-bs-dismiss="modal"],
.modal-header button[data-bs-dismiss="modal"] {
    font-size: 3.5vh !important;
    color: #16106a !important;
}

button[data-bs-dismiss="modal"].btn-close,
.modal-header .btn-close,
.btn-close {
    font-size: 3.5vh !important;
    color: #16106a !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2316106a'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
    opacity: 1 !important;
}

.square-radio[type="radio"] {
    border-radius: 0.25em !important;
}

.square-radio[type="radio"]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}

/* Document Type Selector Cards (Improved Premium) */
.doc-type-card {
    background-color: #ffffff;
    border: 2px solid #eef0f4 !important;
    color: #6c757d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.doc-type-card:hover {
    border-color: #dbe0e7 !important;
    background-color: #fcfcfd;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.btn-check:checked+.doc-type-card {
    background-color: #f5f7ff !important;
    border-color: #16106a !important;
    box-shadow: 0 4px 14px rgba(22, 16, 106, 0.15);
}

.doc-icon-box {
    width: 36px;
    height: 36px;
    background-color: #f1f3f5;
    color: #adb5bd;
    transition: all 0.3s ease;
}

.btn-check:checked+.doc-type-card .doc-icon-box {
    background-color: #16106a;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(22, 16, 106, 0.2);
}

.doc-type-card .check-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #eef0f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.9);
}

.doc-type-card .check-circle i {
    font-size: 14px;
    font-weight: bold;
}

.btn-check:checked+.doc-type-card .check-circle {
    background-color: #16106a;
    border-color: #16106a;
    color: #fff;
    transform: scale(1.1);
}

.doc-type-title {
    font-size: 1rem;
    color: #495057;
    transition: all 0.3s ease;
}

.doc-type-desc {
    color: #868e96;
    transition: all 0.3s ease;
}

.btn-check:checked+.doc-type-card .doc-type-title {
    color: #16106a;
}

.btn-check:checked+.doc-type-card .doc-type-desc {
    color: rgba(22, 16, 106, 0.7);
}