body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('../img/fondo.jpg') no-repeat center center fixed; /* fondo blanco con matiz celeste turquesa */
    color: #333;
    width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}
/* 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 */
}
h1 {
    text-align: center;
    color: #ebebec; /* azul más brillante */
    margin-bottom: 20px;
}

.tabla-container {
    max-width: 1000px;
    margin: auto;
    overflow-x: auto;
}

.tabla-ausencias {
    width: 100%;
    border-collapse: collapse;
    background-color: rgb(8, 60, 231);
    box-shadow: 0 0 10px rgba(119, 119, 119, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Cabecera azul moderna */
.tabla-ausencias thead th {
    background-color: #002b5c !important;
    color: white !important;
}

.tabla-ausencias th, .tabla-ausencias td {
    padding: 12px;
    text-align: center;
    border: 1px solid #dfeef5;
}

/* Filas: blanco y azul claro */
.tabla-ausencias tr:nth-child(even) {
    background-color: #f5faff; /* blanco azulado */
}

.tabla-ausencias tr:nth-child(odd) {
    background-color: #e1f0ff; /* azul claro */
}

/* Hover con efecto más suave */
.tabla-ausencias tr:hover {
    background-color: #cce5ff; /* azul más intenso al pasar el mouse */
}

.mensaje-usuario {
    max-width: 800px;
    margin: 20px auto;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.mensaje-usuario.exito {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mensaje-usuario.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
p {
    color: #0d0d0e;
}