body { 
    font-family: Arial, sans-serif; 
    text-align: center; 
    background-color: #f4f4f4;
    padding: 20px;
}

#registro {
    background: #ffffff;
    padding: 20px;
    max-width: 400px;
    margin: 50px auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 5px solid #007bff;
    border-right: 5px solid #007bff;
}

input {
    width: 80%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    font-size: 16px;
}

/* ✅ Botón habilitado */
button:enabled {
    background-color: #28a745; /* Verde brillante */
    color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* ❌ Botón deshabilitado */
button:disabled {
    background-color: #cccccc; /* Gris claro */
    color: #666666;
    cursor: not-allowed;
    box-shadow: none;
}

/* 🔵 Estilo especial para "Verificar" */
#verificar {
    background-color: #ff0040; /* rojo llamativo */
}

#verificar:enabled:hover {
    background-color: #634557; /* rojo más oscuro al pasar el mouse */
}

/* 🟢 Estilo especial para "Nuevo Ejercicio" */
#nuevoEjercicio {
    background-color: #f8bc07; /* tomate dorado */
}

#nuevoEjercicio:enabled:hover {
    background-color: #464133; /* tomate más oscuro al pasar el mouse */
}

button:hover {
    background-color: #0056b3;
}

#mensajeBienvenida {
    font-size: 28px;
    font-weight: bold;
    color: #e238a1; /* Un color llamativo */
    text-align: center;
    margin-top: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Sombra para resaltar */
}

#puntaje {
    font-size: 24px;
    font-weight: bold;
    color: #2e86c1; /* Azul llamativo */
    text-align: center;
    margin-top: 5px;
    background-color: #f4d03f; /* Fondo amarillo para destacar */
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

#ejercicios {
    display: none;
    background: white;
    padding: 20px;
    max-width: 90%;
    margin: 20px auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 8px solid #28a745;
    border-right: 8px solid #28a745;
}

/* Estilo de la tabla */
table {
    margin: 20px auto;
    border-collapse: collapse;
    width: 60%;
    background: #f7f0f4; /* Fondo azul claro */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    border: 2px solid #00ff95;
}

th {
    background-color: #d36cab;
    color: white;
    padding: 12px;
}

td {
    border: 1px solid #007bff;
    padding: 12px;
    font-size: 24px;  /* Aumenta el tamaño de la fuente */
    text-align: center;
}

/* Estilo para los inputs de número relativo */
input[type="number"] {
    width: 60%;
    text-align: center;
    padding: 5px;
    border: 2px solid red;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    color: red;
    background-color: #fff5f5;
}
th, td {
    padding: 10px;
    text-align: center;
    width: 50%;  /* Ajuste el tamaño de las celdas */
}
