/* Report Display Styles */
.report-display {
    margin-top: 2rem;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.report-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.report-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card h4 {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-value {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.report-table thead {
    background: rgba(255, 122, 24, 0.15);
}

.report-table th,
.report-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.report-table th {
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.report-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.report-table tbody tr:last-child td {
    border-bottom: none;
}

/* Additional responsive improvements */
@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .report-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .report-table {
        font-size: 0.85rem;
    }

    .report-table th,
    .report-table td {
        padding: 0.75rem 0.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .report-summary {
        grid-template-columns: 1fr;
    }
}