/* ===============================
   SORT CONTROLS (unit-reports)
   =============================== */

.sort-controls {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.sort-controls h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.sort-controls label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #444;
}

.sort-controls select {
    padding: 6px 8px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.sort-controls select:focus {
    outline: none;
    border-color: #888;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

/* Make labels stack nicely on small screens */
@media (max-width: 600px) {
    .sort-controls label {
        flex-direction: column;
        align-items: flex-start;
    }
}
