.timer-text {
    font-size: clamp(4rem, 15vw, 6rem);
    font-weight: bold;
    margin: 1rem 0;
    color: var(--text-color-light);
    font-variant-numeric: tabular-nums;
    text-align: center;
    transition: color 0.3s ease;
}

.timer-text.expired {
    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; }
}

/* Contenedor de botones del timer */
.timer-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* --- Vista de Resultados --- */
.results-location {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background-color: var(--section-deep);
    border: 1px dashed var(--border-color-light);
    border-radius: var(--border-radius-md);
}

#results-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

#results-list li {
    background-color: var(--section-deep);
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius-md);
    border-left: 5px solid var(--border-color-light);
    font-size: 1.1rem;
    transition: background-color 0.2s;
}

#results-list li.is-spy {
    background-color: var(--bg-light);
    border-left-color: var(--warning-color);
    font-weight: bold;
}

/* --- Vista de Configuración de Lugares --- */
#location-list-container {
    max-height: 40vh;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 0.5rem;
    margin-bottom: 1rem;
    background-color: var(--bg-darkest);
}

/* El estilo para .form-control y .checkmark viene de forms.css */
#location-list-container .form-control {
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
}

#location-list-container .form-control:hover {
    background-color: var(--bg-lightest);
}