/* ==========================================================================
   PARTICULARIDADES: JUEGO DE LETRAS (css/estilos-propios.css)
   ========================================================================== */

/* Contenedor especial para encerrar el input de intentos y los botones +/- */
.input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

/* Forzamos que el input de tipo número no tenga bordes ni fondo propio dentro del wrapper */
.input-wrapper input {
    width: 100%;
    padding: 12px;
    border: none !important;
    background: transparent !important;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    color: #2c3e50;
    outline: none;
}

/* Estilo de los botones + y - para que se integren de forma limpia */
.btn-control {
    width: 50px;
    height: 45px;
    background: #e2e8f0;
    color: #2c3e50;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: 0.2s;
}

.btn-control:hover { 
    background: #cbd5e1; 
}