/* 締め日別勤怠一覧レポート専用スタイル */

/* 検索セクション */
.search-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.search-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.search-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

/* 期間表示 */
.period-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.period-info {
    color: white;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.period-info i {
    font-size: 24px;
}

/* レポートセクション */
.report-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.employee-report {
    margin-bottom: 40px;
}

.report-header {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin-bottom: 15px;
}

.report-header h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.period-range {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* レポートテーブル */
.report-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.report-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.report-table th,
.report-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.report-table th {
    font-weight: 600;
    font-size: 13px;
}

.report-table tbody tr:hover {
    background: #f8f9fa;
}

.report-table tfoot {
    background: #f8f9fa;
    font-weight: 600;
}

.total-row td {
    padding: 15px 12px;
    border-top: 2px solid #667eea;
}

.amount {
    text-align: right;
    font-weight: 600;
    color: #28a745;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .search-section,
    .report-section {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .search-actions {
        flex-direction: column;
    }

    .search-actions .btn {
        width: 100%;
    }

    .period-info {
        font-size: 16px;
    }

    .report-table {
        font-size: 12px;
    }

    .report-table th,
    .report-table td {
        padding: 8px 6px;
    }

    .report-header h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .period-section {
        padding: 15px 20px;
    }
}