.cookie-popup {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        gap: 10px;
        font-size: 14px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .cookie-popup .popupContentContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px 20px;
    }

    .cookie-popup a {
        color: #ff7f00;
        text-decoration: underline;
    }
    .cookie-popup button {
        background: #ff7f00;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-weight: bold;
        border-radius: 4px;
        margin-left: 10px;
    }
    .cookie-popup.show {
        opacity: 1;
        visibility: visible;
    }
