/* Estilo para el fondo */
body {
    font-family: 'Arial', sans-serif;
    background: url('img/background2.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Superposición oscura */
    backdrop-filter: blur(4px); /* Desenfoque */
    z-index: 1;
}

/* Contenedor principal */
.container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85); /* Fondo blanco semitransparente */
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 600px; /* Establecer un ancho máximo */
    margin: 0 auto; /* Centrar el contenedor */
}

/* Encabezado */
h1 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
}

.table {
    font-size: 0.9rem; /* Ajustar el tamaño de fuente para tablas */
}
.table-responsive {
    overflow-x: auto;
}

.table th {
    background-color: #f4f4f4;
    color: #333;
}

.table td {
    color: #555;
}

/* Formulario */
form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #0056b3;
}
