/* 🔹 Estilos generales */
body {
    font-family: 'Times New Roman', serif;
    background-color: white;
    color: black;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* 🔹 Logo */
.logo {
    width: 180px;
    margin-top: 20px;
}

/* 🔹 Contenedor principal */
.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 🔹 Títulos */
h1 {
    font-size: 40px;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* 🔹 Estilos de los botones */
.link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.link-container a {
    display: inline-block;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    background: black;
    padding: 12px 20px;
    margin: 10px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    width: 220px;
    text-align: center;
}

/* 🔹 Efecto de "hover" (al pasar el mouse) */
.link-container a:hover {
    background: gray;
    transform: translateY(-3px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

/* 🔹 Efecto de "active" (al hacer clic) */
.link-container a:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* 🔹 Ajustes para móviles */
@media screen and (max-width: 600px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    .link-container a {
        font-size: 16px;
        padding: 10px 15px;
        width: 200px;
    }
}

/* ✅ Centrar la ventana modal correctamente */
#modalConfirmacion {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 400px;
    font-family: "Times New Roman", serif;
}

/* 🔹 Fondo oscuro al mostrar el modal */
#modalConfirmacion {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 300px;
    z-index: 1000;
    display: none;
}

/* 🔹 Fondo difuminado al activar el modal */
#fondoOscuro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

/* ✅ Mejorar los botones */
#btnConfirmar, #btnCancelar {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

#btnConfirmar {
    background: #000;
    color: white;
}

#btnConfirmar:hover {
    background: #333;
}

#btnCancelar {
    background: #ddd;
    color: black;
}

#btnCancelar:hover {
    background: #bbb;
}

/* ✅ Mejorar la presentación de los datos */
#confirmacionTexto p {
    font-size: 18px;
    margin: 8px 0;
}

/* 🔹 Ajustar tamaño de los íconos */
#confirmacionTexto p::before {
    content: "📌 ";
    font-size: 20px;
}

/* ✅ Ajustar la sección de dinámica */
.dinamica {
    background: #000;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    width: 60%;
    margin: 20px auto;
}

.dinamica p {
    margin: 5px 0;
}
