/* ===== Time Slider Styles ===== */
.time-slider-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #F3F4F6;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-left: auto; /* Push to right */
    border: 1px solid #E5E7EB;
}

.time-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-btn {
    background: white;
    border: 1px solid #D1D5DB;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4B5563;
    transition: all 0.2s;
    font-size: 0.75rem;
}

.time-btn:hover {
    background: #EFF6FF;
    color: #2563EB;
    border-color: #3B82F6;
}

.time-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    min-width: 80px;
    text-align: center;
    background: white;
    padding: 0.1rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #E5E7EB;
}

.time-range {
    -webkit-appearance: none;
    width: 150px;
    height: 4px;
    border-radius: 2px;
    background: #D1D5DB;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

.time-range:hover {
    opacity: 1;
}

.time-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3B82F6;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    border: 2px solid white;
}

.time-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3B82F6;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    border: 2px solid white;
}
