/* Reset y fuentes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7fa; /* mantengo el color sólido del primero para coherencia */
    color: #e2e0e0;
    width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    background: url('../img/fondo4.jpg') no-repeat center center fixed;
}
/* Capa adicional para mejorar contraste */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}
/* Creamos el pseudo-elemento que contendrá el fondo desenfocado */
body::before {
    content: '';
    position: fixed;
    /* Ocupa toda la pantalla, independientemente del scroll */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../img/fondo.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    /* Nivel de desenfoque */
    -webkit-filter: blur(8px);
    /* Compatibilidad con Safari */
    z-index: -1;
    /* Lo posicionamos detrás de todo el contenido */
    transform: scale(1.1);
    /* Escala ligeramente para evitar bordes borrosos */
}
/* Tabla tipo vidrio mejorada */
.glass-table {
    width: 80%;
    margin: 60px;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    font-family: Arial, sans-serif;
    color: #000000;
}

/* Encabezado negro con texto blanco, sin hover */
.glass-table thead {
    background-color: #000000 !important;
    color: white;
}
.glass-table td:nth-child(2) {
    color: rgb(12, 12, 12);
}
/* Celdas */
.glass-table th,
.glass-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
}

/* Filas pares: azul */
.glass-table tr:nth-child(even) {
    background-color: #007BFF;
    color: white;
}
/* Desactivar hover general */
.glass-table tr:hover {
    background-color: inherit;
}
.glass-table tbody tr:hover {
    background-color: fuchsia;
    color: white;
}
/* Botón con estilo coherente */
.glass-button,
.edit-button {
    background-color: #004a99;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.glass-button:hover,
.edit-button:hover {
    background-color: #2f89e4;
    transform: scale(1.05);
    color: white;
}

.icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}
h1 {
    text-align: center;
}

