.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #333; /* Тъмен фон */
    padding: 20px;
    border-radius: 8px; /* Закръглени ъгли */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Дълбок сенк */
    z-index: 1000;
    width: 450px;
    color: #fff; /* Бял текст */
    font-family: 'Arial', sans-serif;
}

.cookie-consent-options {
    margin-top: 10px;

}

.cookie-consent-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cookie-consent-button {
    background-color: #0B9BA0;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    flex-grow: 1;
    margin: 0 5px;
    text-align: center;
    transition: background-color 0.2s ease;
    font-weight: bold;
}

.cookie-consent-button:hover {
    background-color: #0B9BA0;;
}

.cookie-consent-button.cm__btn--secondary {
    background-color: #6c757d;
}

.cookie-consent-button.cm__btn--secondary:hover {
    background-color: #5a6268;
}

@media (max-width: 600px) {
    .cookie-consent-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: auto; /* Премахване на фиксираната ширина */
        padding: 15px; /* Намалено вътрешно разстояние */
    }

    .cookie-consent-buttons {
        flex-direction: column; /* Вертикално подреждане на бутоните */
        gap: 10px;
    }

    .cookie-consent-button {
        padding: 10px; /* Намалено вътрешно разстояние на бутоните */
    }
}