/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Contenedor centrado */
.container {
    width: 80%;
    margin: 40px auto;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

/* Título */
h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Tabla */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* Encabezados de la tabla */
th {
    background-color: #007bff;
    color: white;
    padding: 15px;
    font-size: 16px;
}

/* Celdas */
td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* Alternar colores de filas */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Botones */
.button {
    background-color: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.button:hover {
    background-color: #218838;
}

/* Botón de descarga */
.button.download {
    background-color: #17a2b8;
}

.button.download:hover {
    background-color: #138496;
}
.logo-container {
    text-align: center;
    margin: 20px 0;
}

.logo-container img {
    max-width: 200px; /* Ajusta el tamaño del logo según sea necesario */
    height: auto;
}
/* Estilos generales de los formularios */
form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    margin: 20px auto;
    text-align: center;
}

form input[type="text"],
form input[type="password"],
form input[type="file"] {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

form button:hover {
    background-color: #0056b3;
}

h2 {
    text-align: center;
    color: #333;
}

