/*BODY - 2025/02____________________________________________________________*/
/*Centrar div de Preguntas frecuentes*/
div#preguntas_frecuentes {
    width: 50%;
    margin: 0 auto;
}

/*Añadir margen al parrafo*/
p {
    margin-top: 1rem !important;
}

/* Estilos del fondo oscuro */
.overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Fondo oscuro */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Estilos del popup */
.popup {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
}

/* Estilos del botón de cierre */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4444;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

.close-btn:hover {
    background: #cc0000;
}

/* Ajustes del iframe para que ocupe todo el espacio */
.popup iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/*  Botón para ir atrás */

    /* Centrar el botón en la página */
    #breadcrumb {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #backButton {
        color: white;
        background-color: #007936; /* Verde */
        border: none;
        border-radius: 5px;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        font-weight: bold;
    }

    #backButton:hover {
        background-color: #005f2b; /* Verde más oscuro */

/* Estilos documentos */		
	details {
        margin-bottom: 15px;
    }

    .estilo-verde-enlace {
        color: #007936; /* Verde */
        font-weight: bold;
        cursor: pointer;
    }

    a {
        text-decoration: none;
        color: #007936;
        font-size: 16px;
        font-weight: bold;
    }

    a:hover {
        text-decoration: underline;
        color: #005f2b; /* Verde más oscuro */
    }

    ul {
        list-style-type: none;
        padding: 0;
    }

    li {
        margin: 5px 0;
    }

    span {
        font-size: 14px;
        color: #666; /* Color gris para la información adicional */
    }