/* Reset de márgenes y rellenos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     margin: 0;
  
            
        }
}

/* Estilo base */
body {
    font-family: 'Arial', sans-serif;
    

      background-color: #f4f7f9;
            padding: 20px;
}



h2 { color: #333; }
        table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
        th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
        th { background-color: #007BFF; color: white; font-weight: bold; }
        tr:nth-child(even) { background-color: #f2f2f2; }

/* Estilo del contenedor del menú */
.menu {
    text-align: center;
    background-color: #2c3e50;
    
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    
}

/* Estilo de la lista */
.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

/* Estilo de cada ítem del menú */
.menu li {
    margin: 0 15px;
}

/* Estilo de los enlaces */
.menu a {
    display: block;
    padding: 15px 20px;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Efecto al pasar el mouse */
.menu a:hover {
    background-color: #16a085;
    transform: translateY(-5px);
}

/* Efecto en el primer ítem (opcional) */
/*
.menu li:first-child a {
    background-color: #2980b9;
} 
*/

.menu li:first-child a:hover {
    background-color: #3498db;
}

/* Añadir efecto de sombra en el hover */
.menu a:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}








    .form-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    
    /* CENTRADO HORIZONTAL */
    margin: 20px auto; /* Esto lo centra horizontalmente */
}

        /* Título */
        h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
        }

        /* Etiquetas */
        label {
            font-weight: bold;
            display: block;
            margin: 10px 0 5px;
            color: #34495e;
        }

        /* Input de archivos */
        input[type="file"] {
            width: 100%;
            padding: 8px;
            border: 1px solid #bdc3c7;
            border-radius: 5px;
            background-color: #ecf0f1;
            cursor: pointer;
            transition: all 0.3s;
        }

        /* Efecto hover en los inputs */
        input[type="file"]:hover {
            background-color: #d5dbdb;
        }

        /* Botón */
        button {
            background-color: #2980b9;
            color: white;
            border: none;
            padding: 12px 18px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            margin-top: 10px;
            transition: background 0.3s;
        }

        /* Efecto hover en el botón */
        button:hover {
            background-color: #1f618d;
        }

        /* Estilo para la tabla */
        .table-container {
            margin-top: 20px;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        th, td {
            padding: 10px;
            border: 1px solid #ddd;
            text-align: left;
        }

        th {
            background-color: #2980b9;
            color: white;
        }

        tr:nth-child(even) {
            background-color: #f2f2f2;
        }


