/* sin_email.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2, #80deea);
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    color: #333;
}
/* 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 */
}

/* 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; }
h1 {
    color: #f3f1f1;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glass-card {
    background: rgba(200, 248, 200, 0.7);
    /* Verde claro con transparencia */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

table thead tr {
    background-color: rgba(0, 150, 136, 0.7);
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

table th,
table td {
    padding: 12px 15px;
}

table tbody tr {
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
    transition: all 0.3s ease;
}

table tbody tr:nth-of-type(even) {
    background-color: rgba(255, 255, 255, 0.5);
}

table tbody tr:last-of-type {
    border-bottom: 2px solid rgba(0, 150, 136, 0.7);
}

table tbody tr:hover {
    background-color: rgba(178, 235, 242, 0.5);
    transform: translateY(-2px);
}

a {
    color: #00796b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

a:hover {
    color: #004d40;
    text-decoration: underline;
}

font[color="red"] {
    color: #d32f2f !important;
}

img {
    vertical-align: middle;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
    }

    .glass-card {
        padding: 15px;
    }
}