
/* 🎨 Aplica una fuente personalizada a los encabezados */
h1, h2, h3, h4, h5 {
    font-family: 'Georgia', serif; /* Fuente personalizada */
}


/* 📌 Estilos para columnas flotantes */
.column {
    float: left;  /* Hace que las columnas floten a la izquierda */
    width: 45%;   /* Cada columna ocupa el 45% del ancho del contenedor */
    padding: 5px; /* Añade un pequeño espacio interno alrededor del contenido */
    box-sizing: border-box; /* Asegura que padding no afecte el ancho total */
}

/* 🛠️ Solución para evitar problemas con elementos flotantes */
.row::after {
    content: "";       /* Elemento invisible para corregir la estructura */
    clear: both;       /* Asegura que el contenedor .row incluya las columnas */
    display: table;    /* Mantiene la estructura del diseño */
}

/* ✅ Corrección adicional: Evitar desbordamientos en pantallas pequeñas */
@media (max-width: 768px) { 
    .column {
        width: 100%;  /* En pantallas pequeñas, cada columna ocupará el 100% */
        float: none;  /* Evita que las columnas queden una al lado de la otra */
    }
}

.resaltado {
    position: absolute;
    display: inline-block;
    color: rgb(255, 0, 128);
    cursor: pointer;
    text-decoration: blink;
}

.resaltado .tooltip {
    visibility: hidden;
    background-color: black;
    color: white;
    text-align: left;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 600px; /* Set the minimum width */
    max-width: 900px; /* Set the maximum width */
    width: auto;
    white-space: normal; /* Permite saltos de línea */
    word-wrap: break-word; /* Asegura que las palabras largas se dividan */
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.resaltado:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
.center-text {
    text-align: center;
}
.flex-container {
    display: flex;
    justify-content: flex-start; /* Align items to the start */
    align-items: flex-start; /* Align items to the start */
}

.empty-space {
    flex: 1; /* Take up available space */
}

.light-box {
    border: 1px solid #ccc; /* Light gray border */
    background-color: #f9f9f9; /* Light background color */
    padding: 10px; /* Padding inside the box */
    margin: 10px 0; /* Margin around the box */
    border-radius: 5px; /* Rounded corners */
    width: 45%; /* Set a fixed width for the light boxes */
}

#goBackBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
#goBackBtn:hover {
    background-color: #0056b3;
}