
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body general */
body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Titulos */
h1, h3, h4 {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8rem;
    color: #1a73e8;
}

h3 {
    font-size: 1.4rem;
    color: #333;
}

h4 {
    font-size: 1.2rem;
    color: #555;
}

/* Formularios */
form {
    background-color: #fff;
    padding: 20px;
    width: 40%;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Labels */
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Botones */
form input[type="submit"] {
    background-color: #1a73e8;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #1558b0;
}

/* Contenedor de deportes (radio + imagen) */
.deporte-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

/* Contenedor que agrupa todos los deportes */
.deportes-container {
    display: flex;
    flex-wrap: wrap;          /* permite que baje a la siguiente fila */
    justify-content: center;   /* centra la fila */
    gap: 30px;                /* espacio entre deportes */
}

/* Cada deporte individual */
.deporte-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 1 calc(25% - 30px); /* 4 columnas por fila, restando el gap */
    min-width: 120px;           /* evita que se haga demasiado pequeño en móviles */
}

/* Imagen de cada deporte */
.deporte-item img {
    max-width: 100px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Input de texto más corto */
form input[type="text"], input[type="file"] {
    width: 350px;
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.deporte-item img:hover {
    transform: scale(1.1);
}

/* radio debajo de la imagen */
.deporte-item input[type="radio"] {
    margin-top: 15px; /* espacio entre imagen y radio */
    transform: scale(1.3); /* hace el radio más visible */
    cursor: pointer;
}

/* Imágenes de deportes */
.deporte-item img {
    max-width: 100px;
    border-radius: 5px;
    margin-bottom: 5px;
}

/* radio */
.deporte-item input[type="radio"] {
    margin-top: 5px;
    transform: scale(1.2);
}

/* Enlaces generales */
a {
    text-decoration: none;
    color: #fff;
    background-color: #1a73e8;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
    margin: 20px 0;
}

a:hover {
    background-color: #1558b0;
}

/* Contenedores de menú inicial */
body div > div {
    background-color: #fff;
    padding: 20px;
    margin: 15px auto;
    max-width: 400px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

body div > div a {
    font-size: 1rem;
    display: block;
    margin: 10px 0;
}

/* Página de agradecimiento */
body h3:last-of-type {
    color: #1a73e8;
}

/* Específico para IDs */
#agregar_deporte h3 {
    color: #1a73e8;
}

#agregar_deporte form {
    border: 2px solid #1a73e8;
}

/* Centrar “volver al menú principal” */
.volverAtras {
    display: block;
    text-align: center;
    margin: 20px auto;
    background-color: #ff7043;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    width: fit-content;
}

.volverAtras:hover {
    background-color: #e64a19;
}