/* Combined Period Report */

.combined-period-hint {
    margin: 12px 0 8px;
    font-size: 0.95rem;
    color: #555;
}

.combined-period-empty {
    margin: 24px 0;
    color: #666;
}

#combinedPeriodTable {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
}

#combinedPeriodTable th,
#combinedPeriodTable td {
    padding: 8px 10px;
    border: 1px solid #ddd;
    white-space: nowrap;
}

#combinedPeriodTable thead th {
    background: #4CAF50;
    color: #fff;
    text-align: center;
}

#combinedPeriodTable tbody td:nth-child(n+3) {
    text-align: center;
    min-width: 110px;
}

#combinedPeriodTable .progress-bar-container {
    margin: 0 auto;
}

#combinedPeriodTable .sortable {
    cursor: pointer;
    user-select: none;
}

#combinedPeriodTable .sort-indicator::after {
    content: '';
    margin-left: 4px;
    opacity: 0.7;
}

#combinedPeriodTable .sortable.asc .sort-indicator::after {
    content: '▲';
}

#combinedPeriodTable .sortable.desc .sort-indicator::after {
    content: '▼';
}
