/* CSS ĐỊNH VỊ CHO FLOATING BELL */
.digi-floating-wrapper {
    position: fixed;
    z-index: 99999;
}

.digi-bell-btn {
    width: 55px;
    height: 55px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.digi-bell-btn:hover {
    transform: scale(1.1);
}

.digi-noti-panel {
    position: absolute;
    width: 340px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.digi-noti-panel.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.digi-hover-bg:hover {
    background-color: #f8f9fa !important;
}

/* TẠO HIỆU ỨNG CHUÔNG LẮC KHI CÓ THÔNG BÁO MỚI */
@keyframes shake {
    0% { transform: rotate(0); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    75% { transform: rotate(5deg); }
    85% { transform: rotate(-5deg); }
    100% { transform: rotate(0); }
}

.bell-shake-active {
    animation: shake 1.5s infinite;
}

/* Responsive: Desktop (Top-Right) */
@media (min-width: 768px) {
    .digi-floating-wrapper {
        top: 90px;
        right: 25px;
    }

    .digi-noti-panel {
        top: 65px;
        right: 0;
        transform: translateY(-10px);
    }

    .digi-noti-panel.show {
        transform: translateY(0);
    }
}

/* Responsive: Mobile/Tablet (Bottom-Right) */
@media (max-width: 767.98px) {
    body.digi-page-loaded {
        padding-bottom: 100px;
    }

    .digi-floating-wrapper, .digi-cart-floating-wrapper {
        display: none !important;
    }

    #sidebarToggle {
        display: none !important;
    }
}

/* ==========================================================================
   TOPBAR STYLES
   ========================================================================== */
.digi-topbar {
    height: 70px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1030;
    margin-top: -2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: 2rem;
}

[data-bs-theme="dark"] .digi-topbar {
    background: var(--digi-card-bg);
}

.topbar-icon-btn {
    width: 42px;
    height: 42px;
    transition: all 0.3s ease;
    background-color: var(--digi-input-bg) !important;
    border-color: var(--digi-border-color) !important;
    color: var(--digi-text-main) !important;
}

.topbar-icon-btn i {
    color: var(--digi-text-main) !important;
}

.topbar-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    background-color: var(--digi-card-bg) !important;
}

.topbar-icon-btn:hover i {
    color: var(--digi-primary) !important;
}

.digi-topbar-noti-panel {
    position: absolute;
    top: 55px;
    right: 0;
    width: 320px;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.digi-topbar-noti-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 992px) {
    .digi-topbar {
        margin-top: -1.5rem;
        margin-left: -1rem;
        margin-right: -1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
        width: calc(100% + 2rem);
    }
}

@media (max-width: 767.98px) {
    .digi-topbar-noti-panel {
        position: fixed;
        top: 70px;
        left: 5%;
        width: 90%;
        max-width: 400px;
    }
}

/* Ẩn các nút toggle cũ bên trong các trang */
#content #sidebarToggle {
    display: none !important;
}

/* BOTTOM MOBILE NAVIGATION */
.digi-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 99999;
    padding-bottom: env(safe-area-inset-bottom);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.digi-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.70rem;
    cursor: pointer;
    width: 20%;
}

.digi-bottom-nav .nav-item.active,
.digi-bottom-nav .nav-item:hover {
    color: var(--bs-primary);
}

.digi-bottom-nav .nav-item i {
    font-size: 1.35rem;
    margin-bottom: 3px;
}

/* Center Home Button */
.digi-bottom-nav .center-item {
    position: relative;
    top: -24px;
}

.digi-bottom-nav .home-btn {
    width: 60px;
    height: 60px;
    background-color: var(--bs-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #ecf0f5;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

html[data-bs-theme="dark"] .digi-bottom-nav .home-btn {
    border-color: #1e1e2d;
}

.digi-bottom-nav .home-btn i {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.digi-bottom-nav .home-btn:hover {
    transform: scale(1.05);
    color: #ffffff;
}

/* Offcanvas fixes */
.offcanvas-bottom.d-md-none {
    z-index: 99998;
}

.offcanvas-bottom.d-md-none .offcanvas-body {
    padding-bottom: 85px !important;
}

.offcanvas-backdrop {
    z-index: 99997 !important;
}

.width-20 {
    width: 25px;
    text-align: center;
}

/* PRINT SPECIFIC STYLES */
@media print {
    .digi-bottom-nav,
    .offcanvas,
    .offcanvas-backdrop,
    .digi-floating-wrapper,
    .footer {
        display: none !important;
    }
    
    body.digi-page-loaded {
        padding-bottom: 0 !important;
    }
    
    @page {
        margin-bottom: 0 !important;
    }
}

/* Swup Transition Animations */
html.is-animating .transition-fade {
    opacity: 0.4;
    pointer-events: none;
    filter: blur(2px);
}
.transition-fade {
    transition: opacity 0.3s ease, filter 0.3s ease;
    opacity: 1;
}

/* Swup Progress Bar Styling */
.swup-progress-bar {
    height: 3px;
    background-color: #0d6efd;
    z-index: 9999;
}

/* Common UI Elements */
.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #198754;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7);
    animation: pulse-animation 1.5s infinite;
}
@keyframes pulse-animation {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(25, 135, 84, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(25, 135, 84, 0); }
}

/* Skeleton Loading */
.skeleton-box {
    display: inline-block;
    height: 1em;
    position: relative;
    overflow: hidden;
    background-color: #e2e5e7;
    border-radius: 4px;
}
.skeleton-box::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
    animation: shimmer 2s infinite;
    content: '';
}
@keyframes shimmer {
    100% { transform: translateX(100%); }
}
html[data-bs-theme="dark"] .skeleton-box {
    background-color: #2b2b36;
}
html[data-bs-theme="dark"] .skeleton-box::after {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0));
}

/* ==========================================================================
   GLOBAL RESPONSIVE TABLE CARDS CHO MOBILE
   ========================================================================== */
@media (max-width: 767.98px) {
    .table-responsive table {
        border: none !important;
        display: block;
    }
    .table-responsive thead {
        display: none !important;
    }
    .table-responsive tbody {
        display: block;
        width: 100%;
    }
    .table-responsive tr {
        display: block;
        margin-bottom: 1.25rem;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        border: 1px solid #f0f0f0 !important;
        padding: 0.5rem 0.25rem;
    }
    html[data-bs-theme="dark"] .table-responsive tr {
        background-color: var(--digi-card-bg);
        border-color: var(--digi-border-color) !important;
    }
    .table-responsive td[data-label] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dashed #e9ecef;
        padding: 0.85rem 1rem !important;
        text-align: right;
    }
    html[data-bs-theme="dark"] .table-responsive td[data-label] {
        border-bottom-color: var(--digi-border-color);
    }
    .table-responsive td[data-label]:last-child {
        border-bottom: none;
        padding-top: 1rem !important;
        padding-bottom: 0.5rem !important;
    }
    .table-responsive td[data-label]::before {
        content: attr(data-label);
        font-weight: 600;
        color: #6c757d;
        font-size: 0.85rem;
        padding-right: 15px;
        text-align: left;
    }
    /* Làm nổi bật dòng đầu tiên của thẻ trên mobile */
    .table-responsive td[data-label]:first-child {
        background-color: #f8f9fa;
        border-radius: 8px 8px 0 0;
        border-bottom: 2px solid #e9ecef !important;
        margin: -0.5rem -0.25rem 0;
        padding: 1rem !important;
    }
    html[data-bs-theme="dark"] .table-responsive td[data-label]:first-child {
        background-color: var(--digi-input-bg);
        border-bottom-color: var(--digi-border-color) !important;
    }
    /* Ghi đè căn chỉnh trên desktop */
    .table-responsive td.text-center, 
    .table-responsive td.text-end {
        text-align: right !important;
    }
}

/* ==========================================================================
   CART NUDGE TOAST
   ========================================================================== */
.digi-cart-toast-container {
    bottom: 20px;
    right: 20px;
}

@media (max-width: 767.98px) {
    .digi-cart-toast-container {
        top: 20px;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: 90%;
        max-width: 400px;
    }
}

/* Slide animations for toast */
.digi-cart-toast-container .toast.showing {
    animation: slideInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@media (max-width: 767.98px) {
    .digi-cart-toast-container .toast.showing {
        animation: slideInDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
}

@keyframes slideInUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Tối ưu Mobile Tabs cho Profile */
@media (max-width: 767.98px) {
    .profile-tabs-wrapper {
        position: relative;
        background: #f8f9fa;
        border-bottom: 1px solid #dee2e6;
    }
    /* Hiệu ứng mờ che dần (Fade) ở mép phải báo hiệu còn nội dung bên phải */
    .profile-tabs-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 40px;
        background: linear-gradient(to right, rgba(248, 249, 250, 0), rgba(248, 249, 250, 1));
        pointer-events: none;
        z-index: 5;
    }
    .custom-profile-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        border-bottom: none !important;
        padding-bottom: 2px;
    }
    /* Ẩn scrollbar thô kệch trên Chrome/Safari, thiết lập thanh bar mỏng thanh lịch */
    .custom-profile-tabs::-webkit-scrollbar {
        height: 3px;
    }
    .custom-profile-tabs::-webkit-scrollbar-track {
        background: transparent;
    }
    .custom-profile-tabs::-webkit-scrollbar-thumb {
        background: #ced4da;
        border-radius: 10px;
    }
    .custom-profile-tabs .nav-item {
        margin-bottom: -2px; /* Đè lên viền dưới */
    }
    .custom-profile-tabs .nav-link {
        white-space: nowrap;
        border: none !important;
        border-bottom: 2px solid transparent !important;
        color: #6c757d;
        padding: 0.85rem 1.15rem;
    }
    .custom-profile-tabs .nav-link.active {
        color: var(--bs-primary) !important;
        background: transparent !important;
        border-bottom: 2px solid var(--bs-primary) !important;
        font-weight: 700;
    }
    .swipe-hint-bar {
        font-size: 0.70rem;
        color: #adb5bd;
        background: #f8f9fa;
        text-align: center;
        padding: 6px 0;
        letter-spacing: 0.3px;
    }
}

/* SSL Configure / Reissue Input Styles */
.custom-input { border: 1px solid #ced4da; padding: 10px 15px; border-radius: 8px; transition: all 0.3s; }
.custom-input:focus { border-color: #0d6efd; box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1); }
.custom-radio-box { border: 1px solid #ced4da; border-radius: 10px; padding: 15px; cursor: pointer; transition: all 0.2s; }
.custom-radio-box:hover { border-color: #0d6efd; background: #f8f9fa; }
.custom-radio-box input:checked+label { color: #0d6efd; }
.custom-radio-box:has(input:checked) { border-color: #0d6efd; box-shadow: 0 4px 10px rgba(13, 110, 253, 0.1); }

/* Add Funds Page Styles */
.digi-payment-method.active-method { border-width: 2px !important; }


/* ==========================================================================
   PRODUCTS PRICING TABLE STYLES
   ========================================================================== */
.digi-store-header { text-align: center; margin-bottom: 40px; margin-top: 20px; }
.digi-store-header h2 { font-size: 2.1rem; font-weight: 800; color: #1e1e2d; margin-bottom: 12px; text-transform: uppercase; letter-spacing: -0.5px; }
.digi-store-header .highlight-text { color: var(--bs-primary, #03a9f4); }
.digi-store-header p { font-size: 1.1rem; color: #6c757d; max-width: 650px; margin: 0 auto; line-height: 1.6; }
.digi-pricing-container { margin-top: 10px; }
.digi-pricing-tabs { border-bottom: none; display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; gap: 10px; }
.digi-pricing-tabs>li { float: none; display: inline-block; margin-bottom: 0; }
.digi-pricing-tabs>li>a { border: 1px solid #e4e4e4 !important; border-radius: 30px !important; padding: 10px 25px !important; color: #555 !important; background: #f9f9f9 !important; font-weight: 500; transition: all 0.3s ease; text-decoration: none; white-space: nowrap; }
.digi-pricing-tabs>li.active>a, .digi-pricing-tabs>li>a:hover { background-color: #03a9f4 !important; color: #fff !important; border-color: #03a9f4 !important; box-shadow: 0 4px 10px rgba(3, 169, 244, 0.3); }

/* Tối ưu vuốt ngang (Horizontal Scroll) cho Mobile */
@media (max-width: 768px) {
    .digi-pricing-tabs { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 12px; padding-top: 12px; margin-bottom: 25px; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; /* Thêm Sticky để ghim Tab khi lướt xuống */ position: sticky; top: 0; /* Gắn sát mép trên */ z-index: 1020; backdrop-filter: blur(8px); /* Hiệu ứng làm mờ nội dung phía dưới, rất smooth */ border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Đường viền mỏng tạo cảm giác tách biệt */ /* Kéo rộng ra tràn viền Mobile */ margin-left: -15px; margin-right: -15px; padding-left: 15px; padding-right: 15px; }
    .digi-pricing-tabs::-webkit-scrollbar { display: none; }
    .digi-pricing-tabs>li { scroll-snap-align: start; flex-shrink: 0; }
    .digi-pricing-tabs>li>a { padding: 8px 18px !important; font-size: 14px; }
}

/* Card styling */
.pricing-card { background: #fff; border-radius: 8px; padding: 30px 20px; position: relative; overflow: hidden; border: 1px solid #e4e4e4; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; height: 100%; margin-bottom: 30px; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); border-color: #d1d1d1; }
.pricing-card .ribbon { position: absolute; top: 18px; right: -35px; background: #fc2d42; color: #fff; padding: 5px 40px; transform: rotate(45deg); font-size: 11px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.pricing-title { text-align: center; font-size: 18px; color: #333; margin-bottom: 15px; font-weight: 600; text-transform: uppercase; }
.pricing-price { text-align: center; color: #dd3318; font-size: 2.5em; font-weight: 800; margin-bottom: 0; }
.pricing-period { text-align: center; color: #999; font-size: 13px; margin-bottom: 25px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 25px 0; flex-grow: 1; }
.pricing-features li { padding: 10px 0; border-bottom: 1px dashed #eee; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .f-icon { color: #84c529; width: 20px; text-align: center; margin-right: 5px; }
.pricing-features .f-name { color: #555; flex-grow: 1; }
.pricing-features .f-value { font-weight: bold; color: #333; }
.btn-order { background: #84c529; color: #fff; border: none; border-radius: 4px; padding: 12px 15px; font-weight: bold; display: block; text-align: center; text-transform: uppercase; text-decoration: none; transition: background 0.2s; letter-spacing: 0.5px; }
.btn-order:hover { background: #6da320; color: #fff; text-decoration: none; }




/* ==========================================================================
   UPGRADE PAGE STYLES
   ========================================================================== */
.peer-radio:checked+.upgrade-card-label {
    border-color: var(--bs-primary) !important;
    background-color: rgba(13, 110, 253, 0.03) !important;
}

.peer-radio:checked+.upgrade-card-label .icon-checked {
    display: block !important;
}

.peer-radio:checked+.upgrade-card-label .icon-unchecked {
    display: none !important;
}

.hover-border-primary:hover {
    border-color: rgba(13, 110, 253, 0.5) !important;
}


/* ==========================================================================
   HOME PAGE STYLES
   ========================================================================== */
/* Hiệu ứng Pulse tỏa nhiệt cho nút Đăng ký */
@keyframes pulse-promo {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.btn-pulse-promo {
    animation: pulse-promo 2s infinite;
    transition: transform 0.2s ease;
}

.btn-pulse-promo:hover {
    transform: translateY(-2px);
}


/* ==========================================================================
   FORM & BUTTON UTILITIES
   ========================================================================== */
.custom-input {
    border: 1px solid #ced4da;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.custom-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.custom-profile-tabs .nav-link {
    opacity: 0.6;
    transition: all 0.3s;
}

.custom-profile-tabs .nav-link:hover {
    opacity: 1;
}

.custom-profile-tabs .nav-link.active {
    opacity: 1;
    color: #0d6efd !important;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}


/* ==========================================================================
   VPS PAGE STYLES
   ========================================================================== */
.vps-portal {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.vps-header {
    border-bottom: 1px solid #ebedf2;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.os-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.btn-action {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid transparent;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-right: 10px;
    transition: all 0.2s;
    cursor: pointer;
    color: #495057;
    text-decoration: none;
}

.btn-action:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-action.btn-stop {
    border-color: #ffe0e3;
    color: #ff3b30;
}

.btn-action.btn-restart {
    border-color: #d0ebff;
    color: #339af0;
    border-radius: 50%;
}

.btn-action.btn-poweroff {
    border-color: #ffe0e3;
    color: #ff3b30;
    border-radius: 50%;
}

.btn-action.btn-console {
    border-color: #e9ecef;
    color: #212529;
}

.btn-action.btn-start {
    border-color: #b2f2bb;
    color: #20c997;
}

.btn-action.disabled-action {
    opacity: 0.4;
    cursor: not-allowed !important;
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}

.status-online {
    background: #e3fbed;
    color: #20c997;
    border: 1px solid #b2f2bb;
}

.status-offline {
    background: #ffe3e3;
    color: #ff6b6b;
    border: 1px solid #ffc9c9;
}

.status-badge i {
    font-size: 10px;
    margin-right: 6px;
}

.ip-badge {
    background: #f1f3f5;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    border: 1px solid #e9ecef;
}

.nav-vps {
    border-bottom: 2px solid #f1f3f5;
    margin-bottom: 25px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
}

.nav-vps .nav-link {
    color: #495057;
    font-weight: 500;
    padding: 12px 20px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    border-radius: 0;
    white-space: nowrap;
    transition: 0.2s;
}

.nav-vps .nav-link:hover {
    color: #228be6;
}

.nav-vps .nav-link.active {
    color: #228be6;
    border-bottom-color: #228be6;
    background: rgba(34, 139, 230, 0.05);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.nav-vps .nav-link i {
    margin-right: 6px;
}

.stat-card {
    border: 1px solid #ebedf2;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
    height: 100%;
}

.stat-title {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 15px;
}

.progress-custom {
    height: 12px;
    border-radius: 10px;
    background-color: #f1f3f5;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-custom {
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s ease;
}

.bg-green {
    background-color: #20c997;
}

.bg-blue {
    background-color: #339af0;
}

.bg-red {
    background-color: #ff6b6b;
}

.bg-orange {
    background-color: #ff922b;
}

.chart-container-sm {
    height: 130px;
    width: 100%;
}

.vertical-menu .nav-link {
    text-align: left;
    background: #f8f9fa;
    margin-bottom: 8px;
    border-radius: 8px;
    color: #495057;
    font-weight: 500;
    border: 1px solid #ebedf2;
}

.vertical-menu .nav-link.active {
    background: #228be6;
    color: #fff;
    border-color: #228be6;
}

.settings-panel {
    border: 1px solid #ebedf2;
    border-radius: 12px;
    background: #fff;
    padding: 25px;
}
