#cookie-consent-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: #ffffff;
    color: #111827;
    /* padding: 1.5rem; */
    z-index: 1000;
    display: none; /* Hidden by default */
    font-family: 'Figtree', sans-serif;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    max-width: 550px;
}

@media (min-width: 640px) {
    #cookie-consent-banner {
        left: auto;
    }
}

.cookie-consent-container {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
}

.cookie-consent-content h3 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-consent-content a {
    color: #3b82f6;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid transparent;
    transition: background-color 0.2s;
}

@media (min-width: 1920px) {
    #cookie-consent-banner {
        left: auto;
        max-width: 650px;
    }
    .cookie-btn {
        font-size: 1rem;
    }
    .cookie-consent-content h3 {
        font-size: 1.5rem;
    }
    .cookie-consent-content p {
        font-size: 1.125rem;
    }
    .cookie-consent-content a {
        font-size: 1.125rem;
    }

}