/**
 * Pausenplatz Number Sequence Game Styles
 * file: /wp-content/plugins/pausenplatz/css/games/pausenplatz-numbers-style.css
 */

.pausenplatz-numbers-display {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pausenplatz-numbers-sequence {
    font-size: 6em;
    height: 1.2em;
    width: 1.2em;
    text-align: center;
    line-height: 1.2em;
    font-weight: bold;
    opacity: 0;
    color: #3498db;
    transition: opacity 0.2s;
}

.pausenplatz-numbers-sequence.active {
    opacity: 1;
}

.pausenplatz-numbers-message {
    margin-top: 20px;
    font-size: 1.2em;
    text-align: center;
    color: #555;
}

.pausenplatz-numbers-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.pausenplatz-numbers-button {
    width: 80px;
    height: 80px;
    font-size: 2em;
    border: none;
    border-radius: 8px;
    background-color: #3498db;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.pausenplatz-numbers-button:hover {
    background-color: #2980b9;
}

.pausenplatz-numbers-button.active {
    background-color: #e74c3c;
    transform: scale(0.95);
}

.pausenplatz-numbers-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pausenplatz-numbers-instructions {
    text-align: center;
    font-size: 1.2em;
    padding: 20px;
    margin: 20px 0;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 5px;
}

/* Mobile responsiveness */
@media (max-width: 400px) {
    .pausenplatz-numbers-button {
        width: 70px;
        height: 70px;
    }
    
    .pausenplatz-numbers-sequence {
        font-size: 5em;
    }
} 