#config-view, #timer-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#time-display {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    color: var(--text-color-light);
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

#time-display.finished {
    color: var(--danger-color);
    animation: pulse-danger 1.5s infinite ease-in-out;
}

@keyframes pulse-danger {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

#blinds-display {
    font-size: 3rem;
    font-weight: 500;
    color: var(--front-light);
    margin-bottom: 0.25rem;
}

#blinds-display #big-blind-display {
    font-weight: bold;
    color: var(--front-lightest);
}

#level-display {
    margin-bottom: 1.5rem;
}

.blinds-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.blinds-controls .btn {
    flex-grow: 1;
}

/* Botones de navegación de nivel más pequeños */
.blinds-controls .btn:first-child,
.blinds-controls .btn:last-child {
    flex-grow: 0;
    font-size: 1.5rem;
    padding: 0.5rem 1.2rem;
}

/* Input numérico centrado */
#initial-small-blind {
    text-align: center;
    font-size: 1.2rem;
    padding: 0.5rem;
    max-width: 200px;
    margin: 0 auto;
}

/* Media query para pantallas más pequeñas */
@media (max-width: 400px) {
    #time-display { font-size: 3.5rem; }
    #blinds-display { font-size: 2.5rem; }
}