/**
 * MEC Ticket Sales Report Styles
 */

.mec-ticket-report {
    max-width: 600px;
    margin: 20px 0;
    font-family: inherit;
}

.mec-ticket-report h2 {
    margin: 0 0 15px 0;
    font-size: 1.5em;
    color: #333;
}

.mec-ticket-report-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.mec-ticket-report-table th,
.mec-ticket-report-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.mec-ticket-report-table thead th {
    background: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.mec-ticket-report-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.mec-ticket-report-table tbody tr:hover {
    background: #f0f0f0;
}

.mec-ticket-report-table tfoot td {
    background: #f5f5f5;
    font-weight: 600;
    border-top: 2px solid #ddd;
}

.mec-ticket-report-table td:last-child,
.mec-ticket-report-table th:last-child {
    text-align: right;
}

/* Error and empty state styling */
.mec-ticket-report-error,
.mec-ticket-report-empty {
    padding: 15px;
    border-radius: 4px;
}

.mec-ticket-report-error {
    background: #fff3f3;
    border: 1px solid #e74c3c;
    color: #c0392b;
}

.mec-ticket-report-empty {
    background: #f9f9f9;
    border: 1px solid #ddd;
    color: #666;
}

.mec-ticket-report-error p,
.mec-ticket-report-empty p {
    margin: 0;
}
