/* Styles de base pour l'Action Bar */
.action-bar {
    width: 100%;
    position: relative;
    text-align: center;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 9999;
    font-weight: bold;
    box-sizing: border-box;
}

.action-bar.fixed {
    position: sticky;
    top: 0;
}

.action-bar a {
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

/* Animation de défilement */
.action-bar.scroll a {
    display: inline-block;
    position: relative;
    animation: action-bar-scroll linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .action-bar {
        font-size: 14px !important;
        padding: 8px 0;
    }
}

@keyframes action-bar-scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
