#consent-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 99990;
    max-width: 42rem;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    border: 2px solid #141517;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 12px 40px rgba(20, 21, 23, 0.18);
}

#consent-banner[hidden] {
    display: none !important;
}

.consent-banner__title {
    font-size: 1rem;
    font-weight: 700;
    color: #141517;
}

.consent-banner__text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4b5563;
}

.consent-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

#consent-accept {
    cursor: pointer;
    border: 2px solid #141517;
    border-radius: 9999px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: #03b700;
    color: #fff;
}

#consent-accept:hover {
    background: #029900;
}

.consent-banner__link {
    align-self: center;
    font-size: 0.875rem;
    color: #03b700;
    text-decoration: underline;
}

body.consent-visible {
    padding-bottom: 7rem;
}

@media (min-width: 768px) {
    #consent-banner {
        right: 2rem;
        left: auto;
        margin: 0;
    }
}
