/* POS Reports Styles */

.pos-reports-workspace {
    background-color: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 30px;
}

/* Header */
.reports-header {
    background-color: white;
    padding: 20px 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reports-header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.last-run {
    font-size: 14px;
    color: #6c757d;
}

/* Report Content */
.report-content {
    padding: 20px 30px;
}

/* Filter Section */
.filter-section {
    margin-bottom: 20px;
}

.filter-section h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

/* Results Section */
.results-section {
    margin-top: 20px;
}

.results-section h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

/* Totals Row */
.totals-row {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 16px;
}

.totals-row strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .reports-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        flex-direction: column;
    }

    .filter-actions button {
        width: 100%;
    }
}
