/* Estilos específicos para el juego "Aprendiendo a Contar" */

#instruction {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 20px;
}

#fruit-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    min-height: 150px;
}

.fruit {
    width: 100px;
    height: 100px;
    margin: 10px;
}

#options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.option-button {
    flex: 1 1 auto;
    min-width: 100px;
    max-width: 160px;
    padding: 15px 25px;
    background-color: #28a745;
}

.option-button:hover {
    background-color: #218838;
}

#start-button {
    padding: 20px 40px;
    font-size: 1.8em;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 30px;
}

#start-button:hover {
    background-color: #0056b3;
}
