.acc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    color: var(--e-global-color-text, #fff);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}
.acc-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.acc-banner-text {
    flex: 1;
    min-width: 300px;
}
.acc-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.acc-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}
.acc-btn-accept {
    background: #28a745;
    color: white;
}
.acc-btn-reject {
    background: #6c757d;
    color: white;
}
.acc-hidden {
    display: none !important;
}
@media (max-width: 768px) {
    .acc-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .acc-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}