/* _content/AgentsFrontend/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-3dsbkgkd0d] {
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

main[b-3dsbkgkd0d] {
    flex: 1;
    background-color: #f5f7fa;
    width: 100%;
}

/* Sidebar Overlay for Mobile - Classical */
.sidebar-overlay[b-3dsbkgkd0d] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
    animation: fadeInOverlay-b-3dsbkgkd0d 0.3s ease;
    backdrop-filter: blur(2px);
}

@keyframes fadeInOverlay-b-3dsbkgkd0d {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.sidebar[b-3dsbkgkd0d] {
    background: linear-gradient(180deg, #1e3a5f 0%, #2c5282 100%);
    width: 260px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-row[b-3dsbkgkd0d] {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 2px solid #e5e7eb;
    justify-content: flex-start;
    height: 3.75rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 10;
}

.user-info[b-3dsbkgkd0d] {
    display: flex;
    align-items: center;
    margin-right: auto;
    gap: 0.75rem;
}

.user-greeting[b-3dsbkgkd0d] {
    color: #1e3a5f;
    font-size: 0.95rem;
}

.user-greeting strong[b-3dsbkgkd0d] {
    color: #fbbf24;
    font-weight: 600;
}

.user-info .badge[b-3dsbkgkd0d] {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    border: none;
    box-shadow: 0 2px 6px rgba(30, 58, 95, 0.3);
}

/* Subscription Status Badge Styling */
.subscription-status .badge[b-3dsbkgkd0d] {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    border: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subscription-status .badge[b-3dsbkgkd0d]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.subscription-status .badge:hover[b-3dsbkgkd0d]::before {
    left: 100%;
}

.subscription-status .badge:hover[b-3dsbkgkd0d] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Subscription Status Colors */
.subscription-status .bg-primary[b-3dsbkgkd0d] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: white !important;
}

.subscription-status .bg-warning[b-3dsbkgkd0d] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: white !important;
}

.subscription-status .bg-danger[b-3dsbkgkd0d] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: white !important;
}

.subscription-status .bg-success[b-3dsbkgkd0d] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
}

.subscription-status .bg-secondary[b-3dsbkgkd0d] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
    color: white !important;
}

.user-info .btn-outline-danger[b-3dsbkgkd0d] {
    border: 2px solid #ef4444;
    color: #ef4444;
    font-weight: 500;
    transition: all 0.3s ease;
}

.user-info .btn-outline-danger:hover[b-3dsbkgkd0d] {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Mobile Menu Toggle Button - Classical */
.mobile-menu-toggle[b-3dsbkgkd0d] {
    display: none;
    font-size: 1.75rem;
    color: #1e3a5f;
    padding: 0.5rem 0.75rem;
    margin-left: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.mobile-menu-toggle:hover[b-3dsbkgkd0d] {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    transform: scale(1.05);
}

.mobile-menu-toggle:active[b-3dsbkgkd0d] {
    transform: scale(0.95);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .sidebar-overlay[b-3dsbkgkd0d] {
        display: block;
        animation: fadeInOverlay-b-3dsbkgkd0d 0.3s ease;
    }

    .sidebar[b-3dsbkgkd0d] {
        transform: translateX(100%);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    }

    .sidebar.open[b-3dsbkgkd0d] {
        transform: translateX(0);
        animation: slideInFromRight-b-3dsbkgkd0d 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideInFromRight-b-3dsbkgkd0d {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }

    .mobile-menu-toggle[b-3dsbkgkd0d] {
        display: block;
    }

    main[b-3dsbkgkd0d] {
        margin-right: 0;
    }

    .content[b-3dsbkgkd0d] {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
        padding-top: 1rem;
    }

    .top-row[b-3dsbkgkd0d] {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        height: 3.5rem;
    }

    .user-greeting[b-3dsbkgkd0d] {
        display: none;
    }

    .logout-text[b-3dsbkgkd0d] {
        display: none;
    }

    .user-info[b-3dsbkgkd0d] {
        gap: 0.5rem;
    }

    .user-info .btn-outline-danger[b-3dsbkgkd0d] {
        padding: 0.375rem 0.625rem;
        font-size: 0.875rem;
    }

    .user-info .badge[b-3dsbkgkd0d] {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }

    .subscription-status .badge[b-3dsbkgkd0d] {
        padding: 0.375rem 0.75rem;
        font-size: 0.7rem;
    }

    .subscription-status[b-3dsbkgkd0d] {
        display: none; /* Hide on very small screens to save space */
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .content[b-3dsbkgkd0d] {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .subscription-status .badge[b-3dsbkgkd0d] {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .page[b-3dsbkgkd0d] {
        flex-direction: row;
    }

    .sidebar[b-3dsbkgkd0d] {
        width: 260px;
        height: 100vh;
        position: fixed;
        top: 0;
    }

    main[b-3dsbkgkd0d] {
        margin-right: 260px;
    }

    .top-row[b-3dsbkgkd0d] {
        position: sticky;
        top: 0;
    }

    .content[b-3dsbkgkd0d] {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
        margin-left: 40px;
        margin-right: 40px;
    }
}

#blazor-error-ui[b-3dsbkgkd0d] {
    background: #ffebe9;
    bottom: 0;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    text-align: center;
    color: #d32f2f;
}

#blazor-error-ui .dismiss[b-3dsbkgkd0d] {
    cursor: pointer;
    position: absolute;
    left: 0.75rem;
    top: 0.5rem;
}
/* _content/AgentsFrontend/Components/Layout/NavMenu.razor.rz.scp.css */
/* Clean Modern Sidebar */
.sidebar[b-r2c41aa7sz] {
    height: 100vh;
    width: 280px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Force navigation layout */
.sidebar-nav .nav-link[b-r2c41aa7sz] {
    display: flex !important;
    padding-bottom: 10px;
    flex-direction: row !important;
    align-items: center !important;
}

.sidebar-nav .nav-link .nav-icon[b-r2c41aa7sz] {
    display: inline-flex !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.sidebar-nav .nav-link .nav-text[b-r2c41aa7sz] {
    display: inline !important;
    margin: 0 !important;
}

.sidebar[b-r2c41aa7sz]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

/* Logo Section */
.sidebar-logo[b-r2c41aa7sz] {
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.logo-icon[b-r2c41aa7sz] {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.logo-text[b-r2c41aa7sz] {
    flex: 1;
}

.logo-text h3[b-r2c41aa7sz] {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.logo-text span[b-r2c41aa7sz] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.close-btn[b-r2c41aa7sz] {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover[b-r2c41aa7sz] {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: rotate(90deg);
}

/* Navigation */
.sidebar-nav[b-r2c41aa7sz] {
    flex: 1;
    padding: 1.5rem 0;
    overflow-y: auto;
    position: relative;
    z-index: 2;
}

.nav-link[b-r2c41aa7sz] {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    padding: 1rem 1.5rem 1.625rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    margin: 0.25rem 0;
    gap: 0.75rem;
    white-space: nowrap;
}

.nav-link[b-r2c41aa7sz]::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px 0 0 2px;
    transition: height 0.3s ease;
}

.nav-link:hover[b-r2c41aa7sz] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-right: 2rem;
}

.nav-link:hover[b-r2c41aa7sz]::before {
    height: 60%;
}

.nav-link.active[b-r2c41aa7sz] {
    background: rgba(102, 126, 234, 0.2);
    color: white;
    padding-right: 2rem;
}

.nav-link.active[b-r2c41aa7sz]::before {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nav-icon[b-r2c41aa7sz] {
    font-size: 1.2rem;
    width: 24px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    flex-shrink: 0 !important;
    order: 1;
    color: rgba(255, 255, 255, 0.8) !important;
}

.nav-text[b-r2c41aa7sz] {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    flex: 1 !important;
    text-align: right !important;
    order: 2;
    display: inline-block !important;
}

.nav-link:hover .nav-icon[b-r2c41aa7sz] {
    transform: scale(1.1);
    color: #667eea !important;
}

.nav-link.active .nav-icon[b-r2c41aa7sz] {
    transform: scale(1.1);
    color: #667eea !important;
}

/* Divider */
.nav-divider[b-r2c41aa7sz] {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 1.5rem;
}

/* Footer */
.sidebar-footer[b-r2c41aa7sz] {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.version-info[b-r2c41aa7sz] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.version-info .bi[b-r2c41aa7sz] {
    color: #667eea;
}

/* Scrollbar */
.sidebar-nav[b-r2c41aa7sz]::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav[b-r2c41aa7sz]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-nav[b-r2c41aa7sz]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.sidebar-nav[b-r2c41aa7sz]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes slideIn-b-r2c41aa7sz {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-link[b-r2c41aa7sz] {
    animation: slideIn-b-r2c41aa7sz 0.4s ease forwards;
    opacity: 0;
}

.nav-link:nth-child(1)[b-r2c41aa7sz] { animation-delay: 0.1s; }
.nav-link:nth-child(2)[b-r2c41aa7sz] { animation-delay: 0.15s; }
.nav-link:nth-child(3)[b-r2c41aa7sz] { animation-delay: 0.2s; }
.nav-link:nth-child(4)[b-r2c41aa7sz] { animation-delay: 0.25s; }
.nav-link:nth-child(5)[b-r2c41aa7sz] { animation-delay: 0.3s; }
.nav-link:nth-child(6)[b-r2c41aa7sz] { animation-delay: 0.35s; }
.nav-link:nth-child(7)[b-r2c41aa7sz] { animation-delay: 0.4s; }
.nav-link:nth-child(8)[b-r2c41aa7sz] { animation-delay: 0.45s; }
.nav-link:nth-child(9)[b-r2c41aa7sz] { animation-delay: 0.5s; }
.nav-link:nth-child(10)[b-r2c41aa7sz] { animation-delay: 0.55s; }
.nav-link:nth-child(11)[b-r2c41aa7sz] { animation-delay: 0.6s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar[b-r2c41aa7sz] {
        width: 100%;
    }
    
    .sidebar-logo[b-r2c41aa7sz] {
        padding: 1.5rem 1rem 1rem;
    }
    
    .close-btn[b-r2c41aa7sz] {
        display: block;
    }
    
    .logo-icon[b-r2c41aa7sz] {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .logo-text h3[b-r2c41aa7sz] {
        font-size: 1.2rem;
    }
    
    .sidebar-nav[b-r2c41aa7sz] {
        padding: 1rem 0;
    }
    
    .nav-link[b-r2c41aa7sz] {
        padding: 0.875rem 1rem 1.5rem 1rem;
    }
    
    .nav-icon[b-r2c41aa7sz] {
        font-size: 1.1rem;
        width: 22px;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .nav-text[b-r2c41aa7sz] {
        font-size: 0.95rem;
    }
    
    .sidebar-footer[b-r2c41aa7sz] {
        padding: 1rem;
    }
}

/* Very Small Mobile */
@media (max-width: 576px) {
    .logo-text h3[b-r2c41aa7sz] {
        font-size: 1.1rem;
    }
    
    .nav-link[b-r2c41aa7sz] {
        padding: 0.75rem 0.875rem 1.375rem 0.875rem;
    }
    
    .nav-icon[b-r2c41aa7sz] {
        font-size: 1rem;
        width: 20px;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .nav-text[b-r2c41aa7sz] {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .sidebar[b-r2c41aa7sz] {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .sidebar[b-r2c41aa7sz] {
        background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    }
    
    .nav-link[b-r2c41aa7sz] {
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-link:hover[b-r2c41aa7sz],
    .nav-link.active[b-r2c41aa7sz] {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .nav-link[b-r2c41aa7sz] {
        animation: none;
        opacity: 1;
    }
    
    *[b-r2c41aa7sz] {
        transition: none !important;
    }
}
/* _content/AgentsFrontend/Components/Pages/Cash.razor.rz.scp.css */
/* Cash Statement Page Styles */
.cash-statement-page[b-qyv7mysftv] {
    padding: 2rem;
    background-color: #f8f9fa;
    min-height: calc(100vh - 3.75rem);
    color: #343a40;
    font-family: 'Cairo', sans-serif !important;
}

.cash-statement-page *[b-qyv7mysftv] {
    font-family: 'Cairo', sans-serif !important;
}

/* Page Header */
.page-header[b-qyv7mysftv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.header-content[b-qyv7mysftv] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.header-icon .icon-wrapper[b-qyv7mysftv] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ffb347); /* Golden gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.page-title[b-qyv7mysftv] {
    font-size: 2.2rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.page-subtitle[b-qyv7mysftv] {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

.header-actions[b-qyv7mysftv] {
    display: flex;
    gap: 1rem;
}

/* Filters Section */
.filters-section[b-qyv7mysftv] {
    margin-bottom: 2.5rem;
}

.filters-card[b-qyv7mysftv] {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.filters-header h3[b-qyv7mysftv] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-label[b-qyv7mysftv] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    display: block;
}

.modern-input[b-qyv7mysftv] {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #495057;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
}

.modern-input:focus[b-qyv7mysftv] {
    border-color: #ffd700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    outline: none;
}

/* Modern Buttons */
.btn-modern[b-qyv7mysftv] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-modern .spinner[b-qyv7mysftv] {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    animation: spin-b-qyv7mysftv 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin-b-qyv7mysftv {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-modern.btn-primary[b-qyv7mysftv] {
    background: linear-gradient(45deg, #ffd700, #ffb347); /* Golden gradient */
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.btn-modern.btn-primary:hover[b-qyv7mysftv] {
    background: linear-gradient(45deg, #ffb347, #ffd700);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.btn-modern.btn-secondary[b-qyv7mysftv] {
    background: linear-gradient(45deg, #6c757d, #495057);
    box-shadow: 0 6px 15px rgba(108, 117, 125, 0.3);
}

.btn-modern.btn-secondary:hover[b-qyv7mysftv] {
    background: linear-gradient(45deg, #495057, #6c757d);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
    transform: translateY(-2px);
}

.btn-modern.btn-outline[b-qyv7mysftv] {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
}

.btn-modern.btn-outline:hover[b-qyv7mysftv] {
    background: #ffd700;
    color: white;
    transform: translateY(-2px);
}

/* Summary Cards */
.summary-section[b-qyv7mysftv] {
    margin-bottom: 2.5rem;
}

.summary-card[b-qyv7mysftv] {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.summary-card:hover[b-qyv7mysftv] {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.summary-card .card-icon[b-qyv7mysftv] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.balance-card .card-icon[b-qyv7mysftv] {
    background: linear-gradient(45deg, #ffd700, #ffb347); /* Golden */
}

.income-card .card-icon[b-qyv7mysftv] {
    background: linear-gradient(45deg, #28a745, #20c997); /* Green */
}

.expense-card .card-icon[b-qyv7mysftv] {
    background: linear-gradient(45deg, #dc3545, #e83e8c); /* Red */
}

.change-card .card-icon[b-qyv7mysftv] {
    background: linear-gradient(45deg, #17a2b8, #007bff); /* Blue */
}

.summary-card .card-content h3[b-qyv7mysftv] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
}

.balance-amounts[b-qyv7mysftv] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.amount[b-qyv7mysftv] {
    font-size: 1.2rem;
    font-weight: 700;
}

.amount.positive[b-qyv7mysftv] {
    color: #28a745;
}

.amount.negative[b-qyv7mysftv] {
    color: #dc3545;
}

.amount.iqd[b-qyv7mysftv] {
    font-size: 1.4rem;
}

/* Charts Section */
.charts-section[b-qyv7mysftv] {
    margin-bottom: 2.5rem;
}

.chart-card[b-qyv7mysftv] {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    padding: 2rem;
    border: 1px solid #e9ecef;
    height: 100%;
}

.chart-header[b-qyv7mysftv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f3f5;
}

.chart-header h3[b-qyv7mysftv] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #343a40;
    margin: 0;
    display: flex;
    align-items: center;
}

.chart-legend[b-qyv7mysftv] {
    display: flex;
    gap: 1rem;
}

.legend-item[b-qyv7mysftv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.legend-color[b-qyv7mysftv] {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.income[b-qyv7mysftv] {
    background-color: #28a745;
}

.legend-color.expense[b-qyv7mysftv] {
    background-color: #dc3545;
}

.chart-body[b-qyv7mysftv] {
    height: 400px;
}

/* Transactions Section */
.transactions-section[b-qyv7mysftv] {
    margin-bottom: 2.5rem;
}

.transactions-card[b-qyv7mysftv] {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid #e9ecef;
}

.transactions-header[b-qyv7mysftv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f1f3f5;
}

.transactions-header h3[b-qyv7mysftv] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #343a40;
    margin: 0;
    display: flex;
    align-items: center;
}

.transactions-count[b-qyv7mysftv] {
    font-size: 0.9rem;
    color: #6c757d;
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.transactions-body[b-qyv7mysftv] {
    padding: 0 2rem 2rem;
}

.transactions-table[b-qyv7mysftv] {
    margin-bottom: 0;
}

.transactions-table thead th[b-qyv7mysftv] {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    color: #495057;
    font-weight: 600;
    padding: 1rem;
    font-size: 0.9rem;
}

.transactions-table tbody tr[b-qyv7mysftv] {
    transition: background-color 0.2s;
    border-bottom: 1px solid #f1f3f5;
}

.transactions-table tbody tr:hover[b-qyv7mysftv] {
    background-color: #f8f9fa;
}

.transactions-table tbody td[b-qyv7mysftv] {
    padding: 1rem;
    vertical-align: middle;
    font-size: 0.9rem;
}

.date-cell[b-qyv7mysftv] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date-cell .date[b-qyv7mysftv] {
    font-weight: 600;
    color: #343a40;
}

.date-cell .time[b-qyv7mysftv] {
    font-size: 0.8rem;
    color: #6c757d;
}

.transaction-type[b-qyv7mysftv] {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transaction-type.type-initial[b-qyv7mysftv] {
    background-color: #fff3cd;
    color: #856404;
}

.transaction-type.type-invoice[b-qyv7mysftv] {
    background-color: #d1ecf1;
    color: #0c5460;
}

.transaction-type.type-receivable[b-qyv7mysftv] {
    background-color: #d4edda;
    color: #155724;
}

.transaction-type.type-transfer[b-qyv7mysftv] {
    background-color: #f8d7da;
    color: #721c24;
}

.transaction-type.type-adjustment[b-qyv7mysftv] {
    background-color: #e2e3e5;
    color: #383d41;
}

.transaction-type.type-other[b-qyv7mysftv] {
    background-color: #f8f9fa;
    color: #6c757d;
}

/* Loading Spinner */
.loading-container[b-qyv7mysftv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.loading-spinner[b-qyv7mysftv] {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.spinner-ring[b-qyv7mysftv] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: spin-b-qyv7mysftv 1.5s linear infinite;
}

.spinner-ring:nth-child(1)[b-qyv7mysftv] {
    border-top-color: #ffd700;
    animation-delay: 0s;
}

.spinner-ring:nth-child(2)[b-qyv7mysftv] {
    border-right-color: #ffb347;
    animation-delay: -0.5s;
}

.spinner-ring:nth-child(3)[b-qyv7mysftv] {
    border-bottom-color: #ff8c00;
    animation-delay: -1s;
}

.loading-text[b-qyv7mysftv] {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Error Container */
.error-container[b-qyv7mysftv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 3rem;
    border: 1px solid #e9ecef;
}

.error-icon[b-qyv7mysftv] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.3);
}

.error-content h3[b-qyv7mysftv] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.error-content p[b-qyv7mysftv] {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Empty State */
.empty-state[b-qyv7mysftv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.empty-icon[b-qyv7mysftv] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.empty-state h4[b-qyv7mysftv] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.empty-state p[b-qyv7mysftv] {
    font-size: 1rem;
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cash-statement-page[b-qyv7mysftv] {
        padding: 1rem;
    }

    .page-header[b-qyv7mysftv] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header-content[b-qyv7mysftv] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .header-actions[b-qyv7mysftv] {
        width: 100%;
        flex-direction: column;
    }

    .page-title[b-qyv7mysftv] {
        font-size: 1.8rem;
    }

    .header-icon .icon-wrapper[b-qyv7mysftv] {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .summary-card[b-qyv7mysftv] {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .summary-card .card-icon[b-qyv7mysftv] {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .chart-header[b-qyv7mysftv] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .chart-legend[b-qyv7mysftv] {
        width: 100%;
        justify-content: center;
    }

    .transactions-header[b-qyv7mysftv] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .transactions-body[b-qyv7mysftv] {
        padding: 0 1rem 1rem;
    }

    .transactions-table[b-qyv7mysftv] {
        font-size: 0.8rem;
    }

    .transactions-table th[b-qyv7mysftv],
    .transactions-table td[b-qyv7mysftv] {
        padding: 0.5rem;
    }
}

@media (max-width: 576px) {
    .filters-card[b-qyv7mysftv] {
        padding: 1rem;
    }

    .summary-card[b-qyv7mysftv] {
        padding: 1rem;
    }

    .chart-card[b-qyv7mysftv] {
        padding: 1rem;
    }

    .amount[b-qyv7mysftv] {
        font-size: 1rem;
    }

    .amount.iqd[b-qyv7mysftv] {
        font-size: 1.1rem;
    }

    .transaction-type[b-qyv7mysftv] {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}
/* _content/AgentsFrontend/Components/Pages/CreatePayable.razor.rz.scp.css */
/* Create Payable Page Styles */
.create-payable-page[b-ji1mhsld5v] {
    padding: 2rem;
    background-color: #f8f9fa;
    min-height: 100vh;
}

@media (max-width: 575px) {
    .create-payable-page[b-ji1mhsld5v] {
        padding: 0;
    }
}

/* Page Header */
.page-header[b-ji1mhsld5v] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 575px) {
    .page-header[b-ji1mhsld5v] {
        flex-direction: column;
        align-items: stretch;
    }
}

.header-content[b-ji1mhsld5v] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon .icon-wrapper[b-ji1mhsld5v] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.page-title[b-ji1mhsld5v] {
    font-size: 2.2rem;
    font-weight: 700;
    color: #343a40;
    margin: 0;
}

.header-actions[b-ji1mhsld5v] {
    display: flex;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 576px) {
    .header-actions[b-ji1mhsld5v] {
        width: auto;
    }
}

/* Form Section */
.form-section[b-ji1mhsld5v] {
    margin-bottom: 30px;
    margin-top: 0;
}

.form-card[b-ji1mhsld5v] {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.form-header[b-ji1mhsld5v] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border-bottom: none;
}

.form-header h3[b-ji1mhsld5v] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.form-body[b-ji1mhsld5v] {
    padding: 30px;
}

/* Form Controls */
.modern-input[b-ji1mhsld5v] {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.modern-input:focus[b-ji1mhsld5v] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.form-label[b-ji1mhsld5v] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    display: block;
}

/* Form Actions */
.form-actions[b-ji1mhsld5v] {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .form-actions[b-ji1mhsld5v] {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Modern Button Styles */
.btn-modern[b-ji1mhsld5v] {
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-modern:hover[b-ji1mhsld5v] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-modern:disabled[b-ji1mhsld5v] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-modern.btn-primary[b-ji1mhsld5v] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-modern.btn-secondary[b-ji1mhsld5v] {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

/* Spinner */
.spinner[b-ji1mhsld5v] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin-b-ji1mhsld5v 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin-b-ji1mhsld5v {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Validation Messages */
.text-danger[b-ji1mhsld5v] {
    color: #dc3545 !important;
    font-size: 0.8rem;
    margin-top: 5px;
}

.alert[b-ji1mhsld5v] {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 10px;
}

.alert-danger[b-ji1mhsld5v] {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .create-payable-page[b-ji1mhsld5v] {
        padding: 10px;
    }
    
    .page-header[b-ji1mhsld5v] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .header-actions[b-ji1mhsld5v] {
        width: 100%;
    }
    
    .header-actions .btn-modern[b-ji1mhsld5v] {
        width: 100%;
    }
    
    .form-body[b-ji1mhsld5v] {
        padding: 20px;
    }
    
    .form-actions[b-ji1mhsld5v] {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-modern[b-ji1mhsld5v] {
        width: 100%;
    }
}

/* Responsive Button Sizing */
.save-payable-btn[b-ji1mhsld5v] {
    width: 100% !important;
    max-width: none !important;
    display: block;
}

.cancel-btn[b-ji1mhsld5v] {
    width: 100% !important;
    max-width: none !important;
    display: block;
}

@media (min-width: 576px) {
    .save-payable-btn[b-ji1mhsld5v] {
        width: auto !important;
        max-width: none !important;
        display: inline-flex;
    }

    .cancel-btn[b-ji1mhsld5v] {
        width: auto !important;
        max-width: 150px !important;
        display: inline-flex;
    }
}
/* _content/AgentsFrontend/Components/Pages/Payables.razor.rz.scp.css */
/* Payables Page Styles - Standard Design */
.payables-page[b-js20qm94sp] {
    padding: 2rem;
    background-color: #f8f9fa;
    min-height: calc(100vh - 3.75rem);
    color: #343a40;
    font-family: 'Cairo', sans-serif !important;
}

.payables-page *[b-js20qm94sp] {
    font-family: 'Cairo', sans-serif !important;
}

/* Page Header */
.page-header[b-js20qm94sp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.header-content[b-js20qm94sp] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.header-icon .icon-wrapper[b-js20qm94sp] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ffb347); /* Golden gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.page-title[b-js20qm94sp] {
    font-size: 2.2rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.page-subtitle[b-js20qm94sp] {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

.header-actions[b-js20qm94sp] {
    display: flex;
    gap: 1rem;
}

/* Summary Cards */
.summary-section[b-js20qm94sp] {
    margin-bottom: 2.5rem;
}

.summary-card[b-js20qm94sp] {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.summary-card:hover[b-js20qm94sp] {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.summary-card .card-icon[b-js20qm94sp] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.summary-card:nth-child(1) .card-icon[b-js20qm94sp] {
    background: linear-gradient(45deg, #ffd700, #ffb347); /* Golden */
}

.summary-card:nth-child(2) .card-icon[b-js20qm94sp] {
    background: linear-gradient(45deg, #28a745, #20c997); /* Green */
}

.summary-card:nth-child(3) .card-icon[b-js20qm94sp] {
    background: linear-gradient(45deg, #dc3545, #e83e8c); /* Red */
}

.summary-card:nth-child(4) .card-icon[b-js20qm94sp] {
    background: linear-gradient(45deg, #17a2b8, #007bff); /* Blue */
}

.summary-card .card-content h3[b-js20qm94sp] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
}

.amount[b-js20qm94sp] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #343a40;
}

/* Filters Section */
.filters-section[b-js20qm94sp] {
    margin-bottom: 2.5rem;
}

.filters-card[b-js20qm94sp] {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.filters-header h3[b-js20qm94sp] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-label[b-js20qm94sp] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    display: block;
}

.modern-input[b-js20qm94sp] {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #495057;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
}

.modern-input:focus[b-js20qm94sp] {
    border-color: #ffd700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    outline: none;
}

/* Modern Buttons */
.btn-modern[b-js20qm94sp] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-modern .spinner[b-js20qm94sp] {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    animation: spin-b-js20qm94sp 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin-b-js20qm94sp {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-modern.btn-primary[b-js20qm94sp] {
    background: linear-gradient(45deg, #ffd700, #ffb347); /* Golden gradient */
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.btn-modern.btn-primary:hover[b-js20qm94sp] {
    background: linear-gradient(45deg, #ffb347, #ffd700);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.btn-modern.btn-secondary[b-js20qm94sp] {
    background: linear-gradient(45deg, #6c757d, #495057);
    box-shadow: 0 6px 15px rgba(108, 117, 125, 0.3);
}

.btn-modern.btn-secondary:hover[b-js20qm94sp] {
    background: linear-gradient(45deg, #495057, #6c757d);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
    transform: translateY(-2px);
}

.btn-modern.btn-outline[b-js20qm94sp] {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
}

.btn-modern.btn-outline:hover[b-js20qm94sp] {
    background: #ffd700;
    color: white;
    transform: translateY(-2px);
}

/* Table Section */
.table-section[b-js20qm94sp] {
    margin-bottom: 2.5rem;
}

.table-card[b-js20qm94sp] {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid #e9ecef;
}

.table-header[b-js20qm94sp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f1f3f5;
}

.table-header h3[b-js20qm94sp] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #343a40;
    margin: 0;
    display: flex;
    align-items: center;
}

.table-body[b-js20qm94sp] {
    padding: 0 2rem 2rem;
}

/* Table Styles */
.payables-table[b-js20qm94sp] {
    margin-bottom: 0;
}

.payables-table thead th[b-js20qm94sp] {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    color: #495057;
    font-weight: 600;
    padding: 1rem;
    font-size: 0.9rem;
}

.payables-table tbody tr[b-js20qm94sp] {
    transition: background-color 0.2s;
    border-bottom: 1px solid #f1f3f5;
}

.payables-table tbody tr:hover[b-js20qm94sp] {
    background-color: #f8f9fa;
}

.payables-table tbody td[b-js20qm94sp] {
    padding: 1rem;
    vertical-align: middle;
    font-size: 0.9rem;
}

.date-cell[b-js20qm94sp] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date-cell .date[b-js20qm94sp] {
    font-weight: 600;
    color: #343a40;
}

.date-cell .time[b-js20qm94sp] {
    font-size: 0.8rem;
    color: #6c757d;
}

.amount[b-js20qm94sp] {
    font-weight: 600;
}

.amount.usd[b-js20qm94sp] {
    color: #28a745;
}

.amount.iqd[b-js20qm94sp] {
    color: #dc3545;
}

.badge[b-js20qm94sp] {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-info[b-js20qm94sp] {
    background-color: #d1ecf1;
    color: #0c5460;
}

.action-buttons[b-js20qm94sp] {
    display: flex;
    gap: 0.5rem;
}

.btn-action[b-js20qm94sp] {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-action.btn-success[b-js20qm94sp] {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.btn-action.btn-primary[b-js20qm94sp] {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
}

.btn-action.btn-danger[b-js20qm94sp] {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
}

.btn-action:hover[b-js20qm94sp] {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Loading Spinner */
.loading-container[b-js20qm94sp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.loading-spinner[b-js20qm94sp] {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.spinner-ring[b-js20qm94sp] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: spin-b-js20qm94sp 1.5s linear infinite;
}

.spinner-ring:nth-child(1)[b-js20qm94sp] {
    border-top-color: #ffd700;
    animation-delay: 0s;
}

.spinner-ring:nth-child(2)[b-js20qm94sp] {
    border-right-color: #ffb347;
    animation-delay: -0.5s;
}

.spinner-ring:nth-child(3)[b-js20qm94sp] {
    border-bottom-color: #ff8c00;
    animation-delay: -1s;
}

/* Empty State */
.empty-state[b-js20qm94sp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.empty-icon[b-js20qm94sp] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.empty-state h3[b-js20qm94sp] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.empty-state p[b-js20qm94sp] {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.empty-actions[b-js20qm94sp] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pagination */
.pagination-section[b-js20qm94sp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-top: 1px solid #f1f3f5;
    color: #6c757d;
}

.pagination-info[b-js20qm94sp] {
    font-size: 0.9rem;
}

.pagination-controls[b-js20qm94sp] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-info[b-js20qm94sp] {
    margin: 0 1rem;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .payables-page[b-js20qm94sp] {
        padding: 1rem;
    }

    .page-header[b-js20qm94sp] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header-content[b-js20qm94sp] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .header-actions[b-js20qm94sp] {
        width: 100%;
        flex-direction: column;
    }

    .page-title[b-js20qm94sp] {
        font-size: 1.8rem;
    }

    .header-icon .icon-wrapper[b-js20qm94sp] {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .summary-card[b-js20qm94sp] {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .summary-card .card-icon[b-js20qm94sp] {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .table-header[b-js20qm94sp] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .table-body[b-js20qm94sp] {
        padding: 0 1rem 1rem;
    }

    .payables-table[b-js20qm94sp] {
        font-size: 0.8rem;
    }

    .payables-table th[b-js20qm94sp],
    .payables-table td[b-js20qm94sp] {
        padding: 0.5rem;
    }

    .pagination-section[b-js20qm94sp] {
        flex-direction: column;
        gap: 1rem;
    }

    .empty-actions[b-js20qm94sp] {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .filters-card[b-js20qm94sp] {
        padding: 1rem;
    }

    .summary-card[b-js20qm94sp] {
        padding: 1rem;
    }

    .amount[b-js20qm94sp] {
        font-size: 1rem;
    }

    .btn-action[b-js20qm94sp] {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}
/* _content/AgentsFrontend/Components/Pages/Subscription.razor.rz.scp.css */
/* Modern Subscription Page Styles */
.subscription-page[b-93cvrxhbiz] {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 0;
}

/* Page Header */
.page-header[b-93cvrxhbiz] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: -2rem -2rem 2rem -2rem;
    padding: 3rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header[b-93cvrxhbiz]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.header-content[b-93cvrxhbiz] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.header-icon .icon-wrapper[b-93cvrxhbiz] {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.page-title[b-93cvrxhbiz] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle[b-93cvrxhbiz] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

.header-decoration[b-93cvrxhbiz] {
    position: absolute;
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

/* Loading Container */
.loading-container[b-93cvrxhbiz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    gap: 2rem;
}

.loading-spinner[b-93cvrxhbiz] {
    display: flex;
    gap: 0.5rem;
}

.spinner-ring[b-93cvrxhbiz] {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin-b-93cvrxhbiz 1s linear infinite;
}

.spinner-ring:nth-child(2)[b-93cvrxhbiz] {
    animation-delay: 0.2s;
}

.spinner-ring:nth-child(3)[b-93cvrxhbiz] {
    animation-delay: 0.4s;
}

@keyframes spin-b-93cvrxhbiz {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text[b-93cvrxhbiz] {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Status Section */
.status-section[b-93cvrxhbiz] {
    margin-bottom: 3rem;
}

.status-card[b-93cvrxhbiz] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.status-card[b-93cvrxhbiz]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.status-card.status-active[b-93cvrxhbiz]::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.status-card.status-warning[b-93cvrxhbiz]::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.status-card.status-expired[b-93cvrxhbiz]::before {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.status-header[b-93cvrxhbiz] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.status-icon[b-93cvrxhbiz] {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.status-card.status-active .status-icon[b-93cvrxhbiz] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.status-card.status-warning .status-icon[b-93cvrxhbiz] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.status-card.status-expired .status-icon[b-93cvrxhbiz] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.status-title[b-93cvrxhbiz] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.status-description[b-93cvrxhbiz] {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.status-stats[b-93cvrxhbiz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item[b-93cvrxhbiz] {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stat-value[b-93cvrxhbiz] {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stat-label[b-93cvrxhbiz] {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.progress-container[b-93cvrxhbiz] {
    margin-top: 1.5rem;
}

.progress-bar[b-93cvrxhbiz] {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill[b-93cvrxhbiz] {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text[b-93cvrxhbiz] {
    color: #6b7280;
    font-size: 0.9rem;
    text-align: center;
}

/* Actions Section */
.actions-section[b-93cvrxhbiz] {
    margin-bottom: 3rem;
}

.actions-grid[b-93cvrxhbiz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.action-card[b-93cvrxhbiz] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover[b-93cvrxhbiz] {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-header[b-93cvrxhbiz] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.card-icon[b-93cvrxhbiz] {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.extension-card .card-icon[b-93cvrxhbiz] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.details-card .card-icon[b-93cvrxhbiz] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-title h3[b-93cvrxhbiz] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.card-title p[b-93cvrxhbiz] {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.card-body[b-93cvrxhbiz] {
    padding: 1.5rem;
}

/* Form Styles */
.form-group[b-93cvrxhbiz] {
    margin-bottom: 1.5rem;
}

.form-label[b-93cvrxhbiz] {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.modern-input[b-93cvrxhbiz] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.modern-input:focus[b-93cvrxhbiz] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-modern[b-93cvrxhbiz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-extend[b-93cvrxhbiz] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    width: 100%;
}

.btn-extend:hover:not(:disabled)[b-93cvrxhbiz] {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-extend:disabled[b-93cvrxhbiz] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-93cvrxhbiz] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-93cvrxhbiz] {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.spinner[b-93cvrxhbiz] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-93cvrxhbiz 1s linear infinite;
}

/* Messages */
.message[b-93cvrxhbiz] {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.message.success[b-93cvrxhbiz] {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.message.error[b-93cvrxhbiz] {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Details Grid */
.details-grid[b-93cvrxhbiz] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item[b-93cvrxhbiz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.detail-label[b-93cvrxhbiz] {
    font-weight: 600;
    color: #374151;
}

.detail-value[b-93cvrxhbiz] {
    font-weight: 500;
    color: #1f2937;
}

.detail-value.badge-success[b-93cvrxhbiz] {
    background: #d1fae5;
    color: #065f46;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

.detail-value.badge-info[b-93cvrxhbiz] {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

.detail-value.badge-danger[b-93cvrxhbiz] {
    background: #fee2e2;
    color: #991b1b;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

.detail-value.badge-secondary[b-93cvrxhbiz] {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

.days-remaining[b-93cvrxhbiz] {
    font-weight: 700;
}

.text-success[b-93cvrxhbiz] {
    color: #059669 !important;
}

.text-warning[b-93cvrxhbiz] {
    color: #d97706 !important;
}

.text-danger[b-93cvrxhbiz] {
    color: #dc2626 !important;
}

.text-muted[b-93cvrxhbiz] {
    color: #6b7280 !important;
}

/* Timeline Section */
.timeline-section[b-93cvrxhbiz] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-header[b-93cvrxhbiz] {
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-header h3[b-93cvrxhbiz] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.timeline-header p[b-93cvrxhbiz] {
    color: #6b7280;
    margin: 0;
}

.timeline[b-93cvrxhbiz] {
    position: relative;
    padding-left: 2rem;
}

.timeline[b-93cvrxhbiz]::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item[b-93cvrxhbiz] {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker[b-93cvrxhbiz] {
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e5e7eb;
}

.timeline-item.active .timeline-marker[b-93cvrxhbiz] {
    background: #667eea;
    box-shadow: 0 0 0 3px #667eea;
}

.timeline-item.completed .timeline-marker[b-93cvrxhbiz] {
    background: #10b981;
    box-shadow: 0 0 0 3px #10b981;
}

.timeline-item.future .timeline-marker[b-93cvrxhbiz] {
    background: #6b7280;
    box-shadow: 0 0 0 3px #6b7280;
}

.timeline-content h4[b-93cvrxhbiz] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.timeline-content p[b-93cvrxhbiz] {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.timeline-date[b-93cvrxhbiz] {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}

/* Error Container */
.error-container[b-93cvrxhbiz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.error-icon[b-93cvrxhbiz] {
    width: 80px;
    height: 80px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.error-content h3[b-93cvrxhbiz] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.error-content p[b-93cvrxhbiz] {
    color: #6b7280;
    margin: 0 0 2rem 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscription-page[b-93cvrxhbiz] {
        padding: 1rem 0;
    }
    
    .page-header[b-93cvrxhbiz] {
        margin: -1rem -1rem 2rem -1rem;
        padding: 2rem 1rem;
    }
    
    .header-content[b-93cvrxhbiz] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .page-title[b-93cvrxhbiz] {
        font-size: 2rem;
    }
    
    .status-card[b-93cvrxhbiz] {
        padding: 1.5rem;
    }
    
    .status-header[b-93cvrxhbiz] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .status-stats[b-93cvrxhbiz] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .actions-grid[b-93cvrxhbiz] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-item[b-93cvrxhbiz] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .timeline[b-93cvrxhbiz] {
        padding-left: 1.5rem;
    }
    
    .timeline-item[b-93cvrxhbiz] {
        padding-left: 1.5rem;
    }
    
    .timeline-marker[b-93cvrxhbiz] {
        left: -1.25rem;
    }
}

@media (max-width: 576px) {
    .page-title[b-93cvrxhbiz] {
        font-size: 1.5rem;
    }
    
    .status-card[b-93cvrxhbiz] {
        padding: 1rem;
    }
    
    .card-header[b-93cvrxhbiz] {
        padding: 1rem;
    }
    
    .card-body[b-93cvrxhbiz] {
        padding: 1rem;
    }
    
    .timeline-section[b-93cvrxhbiz] {
        padding: 1.5rem;
    }
}
