.consent-banner {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 1000;
    max-width: 960px;
    margin-inline: auto;
    padding: 16px;
    border-style: solid;
    border-width: 1px;
    border-color: #15434B;
    border-radius: 16px;
    background-color: #000000;
    color: #FDEEA9;
}
.consent-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.consent-text {
    flex: 1;
}
.consent-text h2 {
    margin-top: 0px;
    margin-bottom: 8px;
}
.consent-text p {
    margin-top: 8px;
    margin-bottom: 8px;
}
.consent-actions {
    display: flex;
    gap: 8px;
}
.consent-button {
    min-width: 160px;
    padding: 8px 16px;
    border-style: solid;
    border-width: 1px;
    border-color: #40D1CD;
    border-radius: 8px;
    font: inherit;
    color: #40D1CD;
    background-color: #000000;
    cursor: pointer;
}
.consent-button:hover, .consent-button:focus-visible {
    color: #50CA7F;
    border-color: #50CA7F;
}
