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

:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --background-color: #f3f4f6;
    --text-color: #1f2937;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --border-radius: 8px;
    --box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    direction: rtl;
}

/* Login Page */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.login-header h1 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.login-header p {
    color: #6b7280;
    font-size: 14px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-color);
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.input-group input,
.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: border-color 0.3s;
}

.input-group input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Buttons */
.btn-login,
.btn-save,
.btn-filter,
.btn-export,
.btn-whatsapp,
.btn-add,
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    width: 100%;
    justify-content: center;
}

.btn-login:hover,
.btn-save:hover,
.btn-filter:hover,
.btn-export:hover,
.btn-add:hover,
.btn-primary:hover {
    background: #1e3a8a;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

.btn-cancel {
    background: #6b7280;
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cancel:hover {
    background: #4b5563;
}

.btn-admin-access {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 12px;
    margin-top: 15px;
    width: 100%;
    transition: all 0.3s;
}

.btn-admin-access:hover {
    background: var(--primary-color);
    color: white;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    margin-bottom: 30px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-top {
    display: contents;
}

.nav-toggle {
    display: none;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 18px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-color);
    color: white;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-admin {
    background: var(--success-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.badge-staff {
    background: var(--secondary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.btn-logout {
    color: var(--danger-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-logout:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dashboard */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-header h1 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-section {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.date-filter {
    display: flex;
    gap: 10px;
    align-items: center;
}

.export-buttons {
    display: flex;
    gap: 10px;
}

/* Summary Cards */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.summary-card.profit .card-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.summary-card.expenses .card-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.summary-card.gym .card-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-color);
}

.summary-card.salaries .card-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.card-content h3 {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 5px;
}

.amount-usd {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
}

.amount-lbp {
    font-size: 14px;
    color: #6b7280;
}

/* Total Summary */
.total-summary {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.total-calculation {
    margin-top: 15px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--background-color);
    border-radius: var(--border-radius);
}

/* Charts */
.charts-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.chart-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.chart-container h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.chart-container canvas {
    max-height: 300px;
}

/* Tables */
table {
    width: 100%;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

table thead {
    background: var(--primary-color);
    color: white;
}

table th,
table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid #e5e7eb;
}

table tbody tr:hover {
    background: #f9fafb;
}

/* Expense Tables */
.expense-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.expense-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.expense-table input {
    width: 100%;
    padding: 5px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}

.expense-table tfoot {
    background: #f3f4f6;
    font-weight: bold;
}

.btn-remove {
    background: var(--danger-color);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-add {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 5px;
}

.btn-view,
.btn-edit,
.btn-export-small,
.btn-delete,
.btn-edit-small,
.btn-disable,
.btn-enable {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: white;
}

.btn-view {
    background: var(--secondary-color);
}

.btn-edit,
.btn-edit-small {
    background: var(--warning-color);
}

.btn-export-small {
    background: var(--success-color);
}

.btn-delete {
    background: var(--danger-color);
}

.btn-disable {
    background: #6b7280;
}

.btn-enable {
    background: var(--success-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* Settings */
.settings-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.tab-content.active {
    display: block;
}

.permissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.color-settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.color-settings input[type="color"] {
    width: 100%;
    height: 40px;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius);
    cursor: pointer;
}

/* Status Badges */
.status-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.status-disabled {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

/* Staff List */
.staff-list {
    margin-top: 30px;
    max-height: 400px;
    overflow-y: auto;
}

.staff-list h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.staff-list table {
    font-size: 13px;
}

.staff-list table th,
.staff-list table td {
    padding: 8px;
}

.create-form {
    background: #f9fafb;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
}

/* Summary Section */
.summary-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.summary-item {
    padding: 10px;
    background: #f9fafb;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item.total {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

.system-profit {
    margin-top: 30px;
}

.system-table {
    width: 100%;
    margin-top: 15px;
}

.system-table td {
    padding: 10px;
    border: 1px solid #e5e7eb;
}

.system-table tr:first-child {
    background: #f9fafb;
}

.system-table tr:last-child {
    background: rgba(16, 185, 129, 0.1);
    font-weight: bold;
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-header h1 {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

/* Report Month */
.report-month {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    display: flex;
    gap: 15px;
    align-items: center;
}

.report-month label {
    font-weight: bold;
}

.report-month select {
    width: auto;
}

/* No Data */
.no-data {
    text-align: center;
    padding: 50px;
    color: #6b7280;
}

.no-data i {
    font-size: 48px;
    margin-bottom: 10px;
}

/* Error Message */
.error-message {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    padding: 10px;
    border-radius: var(--border-radius);
    margin-top: 10px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Filter Summary */
.filter-summary {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.filter-summary h3 {
    margin-bottom: 10px;
}

/* Profit Cell */
.profit-cell {
    background: rgba(16, 185, 129, 0.1);
    font-weight: bold;
}

/* Responsive Design - Mobile First */
@media (max-width: 992px) {
    .charts-section {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 10px 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 0;
        padding: 0 15px;
    }
    
    .nav-top {
        width: 100%;
        padding: 5px 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-brand {
        font-size: 18px;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 5px;
        padding: 15px 0;
        border-top: 1px solid #e5e7eb;
        margin-top: 10px;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 12px 15px;
        font-size: 14px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .nav-menu a i {
        display: inline-block;
        width: 25px;
    }
    
    .nav-user {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 13px;
        padding: 10px 0;
        border-top: 1px solid #e5e7eb;
        width: 100%;
    }
    
    /* Container */
    .container {
        padding: 0 10px;
    }
    
    /* Dashboard Header */
    .dashboard-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .dashboard-header h1 {
        font-size: 20px;
        justify-content: center;
    }
    
    /* Filter Section */
    .filter-section {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .filter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .date-filter {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .date-filter select,
    .date-filter input {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
    
    .date-filter label {
        font-weight: bold;
        margin-top: 5px;
    }
    
    .export-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .export-buttons button {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
    
    .btn-filter {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
    
    /* Summary Cards */
    .summary-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .summary-card {
        padding: 15px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .amount-usd {
        font-size: 18px;
    }
    
    /* Charts */
    .charts-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .chart-container {
        padding: 15px;
    }
    
    .chart-container canvas {
        max-height: 250px;
    }
    
    /* Tables */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 13px;
    }
    
    table th,
    table td {
        padding: 10px 8px;
        min-width: 80px;
    }
    
    /* Expense Section */
    .expense-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .expense-section h2 {
        font-size: 16px;
    }
    
    .expense-table {
        font-size: 12px;
    }
    
    .expense-table input {
        padding: 8px 5px;
        font-size: 14px;
    }
    
    /* Action Buttons */
    .action-buttons {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .btn-view,
    .btn-edit,
    .btn-export-small,
    .btn-delete {
        padding: 8px;
        font-size: 12px;
    }
    
    /* Form Actions */
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-actions button,
    .form-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px;
        font-size: 16px;
    }
    
    /* Page Header */
    .page-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 20px;
        justify-content: center;
    }
    
    /* Report Month */
    .report-month {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .report-month select {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
    
    /* Summary Section */
    .summary-section {
        padding: 15px;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .summary-item {
        padding: 12px;
        font-size: 14px;
    }
    
    /* System Table */
    .system-table {
        font-size: 13px;
    }
    
    .system-table td {
        padding: 8px;
    }
    
    .system-table input {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }
    
    /* Settings */
    .settings-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .tab-btn {
        padding: 10px 12px;
        font-size: 12px;
        flex: 1;
        justify-content: center;
        min-width: 80px;
    }
    
    .tab-btn i {
        display: none;
    }
    
    .tab-content {
        padding: 15px;
    }
    
    .permissions-grid {
        grid-template-columns: 1fr;
    }
    
    .color-settings {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    /* Staff List */
    .create-form {
        padding: 15px;
    }
    
    /* Modal */
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .close {
        left: 15px;
        top: 15px;
    }
    
    /* Login */
    .login-box {
        padding: 25px;
    }
    
    .login-header i {
        font-size: 36px;
    }
    
    .login-header h1 {
        font-size: 22px;
    }
    
    /* Total Summary */
    .total-summary {
        padding: 15px;
    }
    
    .calc-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    /* Filter Summary */
    .filter-summary {
        padding: 15px;
    }
    
    /* History Table Footer */
    table tfoot td {
        font-size: 12px;
        padding: 8px 5px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .nav-menu {
        gap: 5px;
    }
    
    .nav-menu a {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
    }
    
    .amount-usd {
        font-size: 16px;
    }
    
    .amount-lbp {
        font-size: 12px;
    }
    
    table th,
    table td {
        padding: 8px 5px;
        font-size: 11px;
        min-width: 60px;
    }
    
    .expense-table input {
        padding: 6px 3px;
        font-size: 12px;
    }
    
    .btn-view,
    .btn-edit,
    .btn-export-small,
    .btn-delete {
        padding: 6px;
        font-size: 10px;
    }
    
    .action-buttons i {
        font-size: 12px;
    }
    
    .color-settings {
        grid-template-columns: 1fr;
    }
    
    .settings-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn-login,
    .btn-save,
    .btn-filter,
    .btn-export,
    .btn-whatsapp,
    .btn-add,
    .btn-primary,
    .btn-cancel {
        min-height: 48px;
        padding: 14px 24px;
    }
    
    .btn-view,
    .btn-edit,
    .btn-export-small,
    .btn-delete {
        min-height: 40px;
        min-width: 40px;
        padding: 10px;
    }
    
    input,
    select,
    textarea {
        min-height: 48px;
        font-size: 16px !important;
    }
    
    .checkbox-label {
        padding: 10px 0;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 24px;
        height: 24px;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .tab-btn {
        min-height: 48px;
    }
}

/* Monthly General Report Table Styles */
.yearly-report-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.yearly-report-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.yearly-report-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.year-selector select {
    padding: 8px 15px;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius);
    outline: none;
}

.general-report-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.general-report-table thead th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    text-align: center;
    border: 1px solid #e2e8f0;
    padding: 10px 5px;
}

.general-report-table tbody td {
    border: 1px solid #e2e8f0;
    padding: 8px 5px;
    text-align: center;
}

.general-report-table .row-label {
    text-align: right;
    font-weight: 600;
    background: #f8fafc;
    color: #475569;
    width: 150px;
}

.general-report-table .row-total {
    background: #f1f5f9;
    font-weight: bold;
}

.general-report-table tbody tr:nth-child(even) {
    background: #fcfcfc;
}

/* Add Report Summary Grid */
.summary-grid-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: var(--border-radius);
}

.summary-grid-inputs .input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #475569;
}
