.adbar-container {
    background-color: #f2ae15; /* Same as btn-custom-secondary */
    color: #212529; /* Dark text for contrast */
    padding: 10px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1050; /* High z-index to be on top */
}

.adbar-content-animated {
    display: flex;
    width: max-content;
    will-change: transform;
}

.adbar-text-container {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.adbar-message {
    font-weight: bold;
    font-size: 1rem;
    padding: 0 20px;
    letter-spacing: 1px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
