.slider-button-active {
    background: #140B09 !important;
    color: #FFFFFF !important;
}
.slider-button-inactive {
    background: #F1ECEB !important;
    color: #140B09 !important;
}
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}
.animate-marquee-fast {
    display: inline-block;
    animation: marquee 10s linear infinite;
}
.animate-marquee-slow {
    display: inline-block;
    animation: marquee 20s linear infinite;
}
.collapsible-content {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.collapsible-content.closed {
    opacity: 0;
    max-height: 0;
}

.collapsible-content.open {
    opacity: 1;
    max-height: 1000px;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: center;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-top: 10px;
}

.avatar-text {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    background-color: #ffc582;
    opacity: 0.8;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center; 
    text-transform: uppercase; 
    margin: 0 auto; 
}