#ef-info-bar {
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: #000000;
    color: #ffffff;
    padding: 0;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    box-shadow: none;
    margin: 0 !important;
    border: none;
}

.efib-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
    padding: 0 20px;
}

.efib-message-wrapper {
    flex: 1;
    text-align: center;
    overflow: hidden;
}

.efib-message {
    font-weight: 400;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    line-height: 1.4;
}

.efib-message a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.efib-message a:hover {
    opacity: 0.8;
}

.efib-message.active {
    opacity: 1;
    transform: translateY(0);
}

.efib-arrow {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 30px 15px 0 15px;
    line-height: 15px;
    height: 40px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    vertical-align: middle;
    transition: opacity 0.3s ease, transform 0.2s ease;
    opacity: 0.7;
    user-select: none;
}

.efib-arrow:hover {
    opacity: 1;
    transform: scale(1.2);
}

.efib-arrow:active {
    transform: scale(0.95);
}

/* Le padding est géré dynamiquement par JavaScript */

@media (max-width: 768px) {
    #ef-info-bar {
        height: 40px;
        font-size: 13px;
        line-height: 40px;
    }
    
    .efib-arrow {
        font-size: 20px;
        padding: 17px 8px 0 8px;
        line-height: 28px;
        opacity: 1;
    }

    .efib-prev {
        margin-left: 6px;
    }

    .efib-next {
        margin-right: 6px;
    }
    
    .efib-container {
        gap: 5px;
        padding: 0 16px;
    }
}
