/* Report Page Styles */
.report-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.report-left {
    flex: 0 0 350px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    height: fit-content;
}

.report-right {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.report-form .form-group {
    margin-bottom: 1rem;
}

.report-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.report-form .form-group input,
.report-form .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    color: #1a202c;
}

.report-form .form-group select {
    cursor: pointer;
}

.report-form .form-group input:focus,
.report-form .form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.report-form .form-actions {
    margin-top: 1.5rem;
}

.report-form .empty-state {
    padding: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.results-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.results-table th,
.results-table td {
    padding: 0.875rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.results-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    border-right: 1px solid #e5e7eb;
}

.results-table th:last-child {
    border-right: none;
}

.results-table td {
    color: #1a202c;
    font-size: 0.95rem;
    border-right: 1px solid #f3f4f6;
}

.results-table td:last-child {
    border-right: none;
}

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

.results-table tbody tr:hover {
    background: #fafbfc;
}

.overtime-indicator {
    color: #dc2626;
    font-weight: 600;
}

.pay-amount {
    font-weight: 600;
    color: #059669;
}

.results-summary {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 1.1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .report-container {
        flex-direction: column;
        gap: 1rem;
    }

    .report-left {
        flex: 1 1 auto;
    }

    .results-table {
        overflow-x: auto;
    }

    .results-table table {
        min-width: 600px;
    }
}
