.cookie-notice {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: auto;
    top: auto;
    z-index: 3000;
    width: min(420px, calc(100% - 32px));
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
}
.cookie-notice[hidden] {
    display: none;
}
@media (max-width: 760px) {
    .cookie-notice {
        right: 16px;
        left: 16px;
        bottom: auto;
        top: 50%;
        width: auto;
        transform: translateY(-50%);
    }
}
.cookie-notice-window {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 22px 22px 18px;
    background: #fff;
    color: #22284a;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(19, 43, 84, 0.22);
    pointer-events: auto;
}
.cookie-notice-window h2 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #22284a;
}
.cookie-notice p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.45;
    color: #22284a;
}
.cookie-notice a {
    color: #1a6fb5;
}
.cookie-notice-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
.cookie-notice-accept,
.cookie-notice-decline {
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}
.cookie-notice-accept {
    border: 1px solid #4a87b6;
    border-top-color: #5ba7e1;
    background: #5ba7e1;
    color: #fff;
}
.cookie-notice-decline {
    border: 1px solid #c5ced6;
    background: #fff;
    color: #22284a;
}
.terms-notice {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(19, 43, 84, 0.45);
}
.terms-notice-window {
    width: 100%;
    max-width: 440px;
    box-sizing: border-box;
    padding: 22px 22px 18px;
    background: #fff;
    color: #22284a;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(19, 43, 84, 0.22);
}
.terms-notice-window h2 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
}
.terms-notice-window p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.45;
}
.terms-notice-label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.4;
}
.terms-notice-label input {
    margin-top: 3px;
}
.terms-notice-label a {
    color: #1a6fb5;
}
.terms-notice-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}
.terms-notice-window,
.terms-notice-accept,
.terms-notice-logout {
    pointer-events: auto;
}
.terms-notice-accept {
    border: 1px solid #4a87b6;
    border-top-color: #5ba7e1;
    border-radius: 8px;
    background: #5ba7e1;
    color: #fff;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}
.terms-notice-logout {
    margin-top: 10px;
    padding: 0;
    border: none;
    background: none;
    color: #5a6b78;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}
