#cookie-consent {
    max-width: 300px;
    border: 1px solid #000;
    border-radius: 25px;
    font-family: "Public Sans", sans-serif;
    font-size: 18px;
    color: #000;
}
#cookie-consent::backdrop {
    background: rgba(0, 0, 0, 0.5);
}
#cookie-consent a {
    color: #000;
}
#cookie-consent a:hover {
    color: #FF61C9;
}
#cookie-consent input[type='checkbox'] {
    accent-color: #FF61C9;
    color: #fff;
}
button#consent-accept, button#consent-reject {
    border-radius: 50px;
    border: 2px solid #000;
    background-color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
    color: #000;
}
button#consent-accept:hover, button#consent-reject:hover {
    color: #fff;
    background-color: #FF61C9;
}
.consent-body {
    padding: 1rem;
}
.consent-buttons {
    margin: 1rem 0;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}
.sr-only {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
}
