/* Timer layout styles */

.timer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--darker-bg);
    border-radius: 8px;
}

.timer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.timer-label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.timer-value {
    font-size: 2rem;
    font-weight: 600;
    font-family: monospace;
    color: var(--primary-color);
}

#timer {
    font-size: 2.5rem;
    margin: 0;
}

#timer.paused {
    color: #ff9800;
    opacity: 0.7;
    animation: pulse 1.5s infinite;
}

.timer-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timer-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .timer-column {
        width: 100%;
    }
}
