/* Premium Style Sheet for Employee Work & Client Management System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #0b0f19;
    --bg-card: rgba(22, 28, 45, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --primary-color: #4f46e5;
    --primary-hover: #6366f1;
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #06b6d4;
    --purple-color: #8b5cf6;
    
    /* Font family */
    --font-sans: 'Outfit', sans-serif;
    
    /* Layout Dimensions */
    --sidebar-width: 260px;
    --sidebar-collapsed: 70px;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.15) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* App Containers */
#app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    width: var(--sidebar-width);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-color);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.sidebar.collapsed {
    width: var(--sidebar-collapsed);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 32px;
    padding: 0 8px;
    overflow: hidden;
    white-space: nowrap;
}

.sidebar-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
}

.sidebar-item a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.sidebar-item.active a {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
}

.sidebar-footer {
    margin-top: auto;
    padding: 16px 8px;
    border-top: 1px solid var(--border-color);
}

.user-profile-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s, opacity 0.2s;
}

.user-profile-widget:hover {
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.9;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.user-role {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: capitalize;
}

/* Main Content Wrapper */
.main-wrapper {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar.collapsed + .main-wrapper {
    margin-left: var(--sidebar-collapsed);
}

/* Header bar */
.top-header {
    height: var(--header-height);
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 90;
}

.toggle-sidebar-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.toggle-sidebar-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.page-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

/* Main content viewport */
.content-viewport {
    padding: 32px;
    flex: 1;
}

/* Page Section Management */
.app-section {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.app-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Authentication Screen Layout */
.auth-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--bg-dark);
    z-index: 1000;
    background-image: 
        radial-gradient(at 30% 30%, rgba(79, 70, 229, 0.25) 0px, transparent 50%),
        radial-gradient(at 70% 70%, rgba(59, 130, 246, 0.2) 0px, transparent 50%);
}

.auth-card {
    background: var(--bg-card);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: authEntry 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authEntry {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.4);
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Glassmorphism Cards & Panels */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.stat-icon.primary { background: rgba(79, 70, 229, 0.15); color: #818cf8; }
.stat-icon.success { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.stat-icon.warning { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.stat-icon.danger { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.stat-icon.info { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

/* Sections/Containers */
.panel-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 32px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.panel-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Premium Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    background: rgba(15, 23, 42, 0.85);
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background: #0f172a;
    color: #fff;
}

/* Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
    opacity: 0.95;
    box-shadow: 0 4px 18px rgba(79, 70, 229, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
    background: #ef4444;
    color: #fff;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.8rem;
    border-radius: 8px;
}

/* Interactive Tables */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.2);
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.table-custom th {
    background: rgba(15, 23, 42, 0.7);
    padding: 16px 20px;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.table-custom td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    vertical-align: middle;
    transition: background-color 0.2s ease;
}

.table-custom tr:last-child td {
    border-bottom: none;
}

.table-custom tr:hover td {
    background: rgba(255, 255, 255, 0.015);
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.badge-in-progress { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.badge-ready-to-cart { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.badge-pending-cart-due-to-seller { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.badge-cart-done { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.badge-contract-generated { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.badge-seller-refusing-to-cart { background: rgba(217, 70, 239, 0.15); color: #f472b6; }
.badge-work-not-done-due-to-l1-issues { background: rgba(220, 38, 38, 0.2); color: #ef4444; }
.badge-others { background: rgba(148, 163, 184, 0.15); color: #cbd5e1; }
.badge-invoice-done { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.25); }
.badge-invoice-pending { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.25); }

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 10, 19, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.25s ease-out;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 95%;
    max-width: 1200px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Dynamic Nested Lists for Company Creation */
.nested-container {
    background: rgba(15, 23, 42, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.nested-item {
    background: rgba(22, 28, 45, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
}

.nested-item:last-child {
    margin-bottom: 0;
}

.nested-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-hover);
}

.remove-nested-btn {
    color: #ef4444;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    background: none;
    border: none;
}

/* Multiple Secondary ID Row Styling */
.secondary-id-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 12px;
    align-items: flex-end;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 8px;
}

.secondary-id-row:last-child {
    margin-bottom: 0;
}

.secondary-id-row .form-group {
    margin-bottom: 0;
}

.remove-sec-id-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.remove-sec-id-btn:hover {
    background: #ef4444;
    color: #fff;
}

/* Red Flag Badges and Row States */
.badge-red-flag {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #f87171 !important;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.client-red-flagged-row {
    border-left: 4px solid var(--danger-color) !important;
}

/* Toast Messages */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.toast {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 400px;
    transform: translateY(20px);
    opacity: 0;
    animation: toastSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlide {
    to { transform: translateY(0); opacity: 1; }
}

.toast.success { border-left: 4px solid var(--success-color); }
.toast.error { border-left: 4px solid var(--danger-color); }
.toast.info { border-left: 4px solid var(--info-color); }

/* Search & Filter Container */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-item {
    flex: 1;
    min-width: 180px;
}

.filter-search {
    flex: 2;
    min-width: 240px;
}

/* Employee Daily Entry Filter Bar */
#emp-filter-bar {
    background: var(--surface-secondary, rgba(255,255,255,0.03));
    border: 1px solid var(--border-color, rgba(255,255,255,0.08));
    border-radius: 12px;
    padding: 14px 16px !important;
    margin-bottom: 16px;
}

#emp-filter-bar .form-control {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#emp-filter-bar .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
    outline: none;
}

#emp-filter-bar select.form-control option {
    background: var(--sidebar-bg, #1a1a2e);
    color: var(--text-primary);
}

#emp-filter-bar #emp-filter-reset {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s;
    flex-shrink: 0;
}

#emp-filter-bar #emp-filter-reset:hover {
    background: var(--danger-color);
    border-color: var(--danger-color);
    color: #fff;
}

@media (max-width: 768px) {
    #emp-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    #emp-filter-bar > * {
        width: 100%;
    }
}


/* Remarks Field logic styling */
.remarks-wrapper {
    display: none;
}
.remarks-wrapper.active {
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.mobile-active {
        transform: translateX(0);
    }
    .main-wrapper {
        margin-left: 0 !important;
    }
    .top-header {
        padding: 0 20px;
    }
    .content-viewport {
        padding: 20px;
    }
}

/* Dynamic Work Items Styles */
.work-item-block {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.work-item-block:hover {
    border-color: rgba(79, 70, 229, 0.25);
    background: rgba(255, 255, 255, 0.02);
}

.work-item-block .remove-item-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(239, 68, 68, 0.1);
    transition: all 0.2s ease;
}

.work-item-block .remove-item-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ff6b6b;
}

/* Form Summary Panel */
.form-summary-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px 8px;
    border-left: 3px solid var(--border-color);
}

.summary-item.primary {
    border-left-color: var(--primary-color);
}

.summary-item.success {
    border-left-color: var(--success-color);
}

.summary-item.purple {
    border-left-color: var(--purple-color);
}

.summary-item.due {
    border-left-color: var(--warning-color);
}

.summary-item-label {
    font-size: 0.725rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-item-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-sans);
}

/* Reports Specific Tabs and Log styling */
.reports-tabs-nav .tab-btn {
    transition: all 0.2s ease;
    outline: none;
}
.reports-tabs-nav .tab-btn:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.02) !important;
}
.reports-tabs-nav .tab-btn.active {
    color: #fff !important;
    border-bottom-color: var(--primary-color) !important;
}
.payment-log-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
}
.payment-log-item:last-child {
    border-bottom: none;
}
.payment-log-item-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.payment-log-item-right {
    font-weight: 700;
    color: var(--success-color);
}
