/* Date Controls Section Styles */

.date-control-btn {
    padding: 0.375rem 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.date-control-btn:hover {
    transform: scale(1.05);
}

.date-control-btn i {
    font-size: 0.875rem;
}

.date-control-group {
    min-width: max-content;
}

.date-picker-input {
    font-size: 0.875rem;
}

.timeframe-selector {
    display: flex;
    gap: 1rem;
}

.timeframe-selector label {
    margin-bottom: 0;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
}

.timeframe-selector input[type="radio"] {
    margin-right: 0.25rem;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .date-control-group {
        width: 100% !important;
        margin-bottom: 0.5rem;
    }

    .timeframe-selector {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .date-control-btn {
        width: 100%;
        margin: 0.25rem 0;
    }
}
