/* Estilos para la navegación entre secciones */
.section-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 100; /* Asegurar que esté por encima de otros elementos */
}

.section-nav-button {
    background-color: rgba(255, 0, 0, 255.2);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 0 10px;
}

.section-nav-button:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.section-indicator {
    color: white;
    font-size: 16px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 29px;
}

/* Posicionamiento específico para las flechas */
.prev-section {
    order: 1;
}

.section-indicator {
    order: 2;
}

.next-section {
    order: 3;
}

/* Asegurarse de que los botones sean visibles */
.modal-content .section-navigation {
    margin-bottom: 20px;
    clear: both;
}
