.timer-display {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timer-display:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.timer-header {
    margin-bottom: 8px;
}

.timer-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.timer-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.timer-progress {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-indicator {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.timer-time {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.timer-footer {
    display: flex;
    justify-content: flex-end;
}

.timer-status {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Status-specific styles */
.timer-running .progress-indicator {
    background-color: #2196F3; /* Blue */
}

.timer-paused .progress-indicator {
    background-color: #FFC107; /* Amber */
}

.timer-completed .progress-indicator {
    background-color: #4CAF50; /* Green */
}

.timer-created .progress-indicator {
    background-color: #9E9E9E; /* Gray */
}

/* Status-specific timer display styles */
.timer-running {
    border-left: 4px solid #2196F3;
}

.timer-paused {
    border-left: 4px solid #FFC107;
}

.timer-completed {
    border-left: 4px solid #4CAF50;
}

.timer-created {
    border-left: 4px solid #9E9E9E;
}
