/* General Styles */
body {
    background-color: #777799;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f5f5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.title {
    font-family: 'Arial', sans-serif; /* Puedes cambiar la fuente a la que prefieras */
    font-size: 30px;
    color: #000000	;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif; /* Puedes cambiar la fuente a la que prefieras */
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn {
    background: #7c7c78;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 2px solid black; /* Borde negro con grosor de 2px */
    border-radius: 5px; /* Bordes ligeramente redondeados (opcional) */
    padding: 10px 20px; /* Espaciado interno */
    background-color: white; /* Fondo blanco (puedes cambiarlo si lo necesitas) */
    color: black; /* Color del texto */
    font-size: 16px; /* Tamaño de la fuente */
    cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
  }


.btn:hover {
    background: #F5F5DC;
}

.error-msg {
    color: red;
    display: none;
    font-size: 14px;
}

/* Number Grid */
.number-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.number-btn {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #F5F5DC	;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.number-btn:hover {
    background: #bfc21d;
}

.number-btn.disabled {
    background: #f44336;
    cursor: not-allowed;
}
/* Logo */
.logo {
    width: 600px; /* Ajusta el tamaño del logo */
    margin: 0 auto 20px; /* Centrado y espacio debajo */
    display: block; /* Para que funcione con `margin` */
    border-radius: 10px; /* Opcional: Bordes redondeados */
}
#numberGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* Botones en columnas automáticas */
    gap: 5px; /* Espacio reducido entre botones */
    padding: 10px;
    justify-items: center; /* Centrar los botones */
    max-height: 400px; /* Limita el alto del contenedor */
    overflow-y: auto; /* Habilita el desplazamiento vertical */
    border: 1px solid #ccc; /* Opcional: añade un borde al contenedor */
    background-color: #f0f0f0; /* Fondo claro para destacar */
}

.number-btn {
    width: 70px;
    height: 70px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #000000;
    border-radius: 10px;
    background-color: #eee8aa; /* Verde */
    color: black; /* Texto blanco */
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
}

.number-btn:hover {
    background-color: #c4c717; /* Verde más oscuro al pasar el mouse */
    transform: scale(1.05); /* Animación ligera */
}

.number-btn.disabled {
    background-color: red; /* Gris para botones deshabilitados */
    cursor: not-allowed;
    color: #ffffff; /* Texto blanco */
}
/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f5f5, #e8f5e9);
    color: #333;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Info Container */
.info-container {
    max-width: 800px;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Title */
.info-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 10px;
}

.info-subtitle {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Prizes Section */
.prizes {
    margin-top: 20px;
}

.prizes-title {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.prizes-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.prizes-list li {
    font-size: 1.2em;
    line-height: 1.8;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.place {
    font-weight: bold;
    color: #4CAF50;
}

/* Footer */
.info-footer {
    margin-top: 30px;
    font-size: 1.1em;
    color: #777;
    font-style: italic;
}
/* Header */
.header {
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.menu {
    display: flex;
    gap: 15px;
}

.menu a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s;
    border: 1px solid black; /* Borde negro con grosor de 2px */
    border-radius: 5px; /* Bordes ligeramente redondeados (opcional) */
    padding: 5px 10px; /* Espaciado interno */
    background-color: white; /* Fondo blanco (puedes cambiarlo si lo necesitas) */
    color: black; /* Color del texto */
    font-size: 13px; /* Tamaño de la fuente */
    cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
  }


.menu a:hover {
    color: #d6c421;
}
