.top-banner-slider {
    background-color: #218eca;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5vh;
    overflow: hidden;
    position: relative;
}

.banner-slider-container {
    position: relative;
    width: 100%;
    text-align: center;
}

.banner-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: opacity 0.5s ease-in-out;
    font-weight: bold;
    padding: 10px 0;
    pointer-events: none;
}

.banner-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* Animación de fade */
@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
