#gdpr {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    z-index: 50;
    transform: translateX(-50%);
    display: flex;
    align-items: center; /* Vertically align content */
    justify-content: space-between; /* Distribute space between message and button */
    gap: 1rem; /* Reduce spacing for smaller screens */
    width: 600px; /* Set a consistent width */
    max-width: 90%; /* Responsive width */
    padding: 0.5rem 1rem !important;
    background-color: #fff;
    border-radius: 9999px;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.15);
    font-family: "Golos Text", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.9375rem; /* 15px */
    line-height: 1.5; /* Consistent line height for readability */
    color: #333;
}

/* Flex container inside the banner */
#gdpr .flex {
    display: flex;
    align-items: center; /* Align items vertically */
    width: 100%; /* Ensure the content spans the banner */
}

/* Content-left styling */
#gdpr .content-left {
    flex: 1; /* Take up available space */
    text-align: left; /* Align text to the left */
    display: flex;
    margin-left: 1rem;
    align-items: center; /* Vertically align content */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

/* Content-right styling (button) */
#gdpr .content-right {
    flex-shrink: 0; /* Prevent shrinking */
    text-align: right; /* Align text to the right */
    display: flex;
    align-items: center; /* Vertically align content */
}

#gdpr .content-right button {
    background-color: #cfe23b !important;
    color: #000 !important;
    padding: 0.5rem 1rem !important;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 0.875rem; /* 14px */
    transition: background-color 0.3s ease;
}

#gdpr .content-right button:hover {
    background-color: #333;
}

/* Hidden state */
#gdpr.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    #gdpr {
        flex-direction: row; /* Keep items in the same line */
         padding: 0.5rem 1rem !important; 
    }

    #gdpr .content-left {
        flex-basis: 90%; /* Allow the message to take up more space */
        margin-left: 0;
        text-align: left; /* Align text to the left */
    }

    #gdpr .content-right button {
        flex-shrink: 0; /* Prevent shrinking */
        width: auto; /* Keep button width minimal */
    }
}


