/* Estilos para los botones de navegación fijos */
.navigation-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2911A8;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 16px 32px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(41, 17, 168, 0.25);
    transition: all 0.2s ease;
    display: none; /* Oculto por defecto */
}

.navigation-btn:hover {
    background: #3a26b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(41, 17, 168, 0.35);
}

.navigation-btn:active {
    transform: translateY(1px);
}

.navigation-btn.visible {
    display: block;
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status bar styles */
.status-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 9998;
}

.slider-status {
    font-weight: 600;
    font-size: 1.05em;
    color: #2911A8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    display: block;
}

/* Estilos para dispositivos móviles */
@media (max-width: 600px) {
    .bottom-bar {
        max-width: 100%;
        left: 0;
        transform: none;
    }
}

/* Estilos para el botón Next */
#sliders .next-btn {
    background: #2911A8;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 16px 32px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(41, 17, 168, 0.25);
    transition: all 0.2s ease;
}

#sliders .next-btn:hover {
    background: #3a26b9;
    transform: translateY(-2px);
}

/* Estilos para el texto de status */
.slider-status {
    font-weight: 700;
    font-size: 1.05em;
    color: #2911A8;
    margin-right: 14px;
    max-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Asegurar espacio para la barra */
#sliders {
    padding-bottom: 100px;
}

.sliders-form {
    padding-bottom: 80px;
}
