.rg-consent-banner,
.rg-consent-modal {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: #172b4d;
}

.rg-consent-banner {
    position: fixed;
    z-index: 2147483645;
    right: 24px;
    bottom: 24px;
    width: min(520px, calc(100vw - 32px));
    box-sizing: border-box;
    padding: 22px;
    border: 1px solid #d8e2f1;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(20, 45, 88, .22);
}

.rg-consent-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
}

.rg-consent-copy {
    margin: 0;
    color: #50627e;
    font-size: 14px;
    line-height: 1.65;
}

.rg-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.rg-consent-button {
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid #2f67c8;
    border-radius: 10px;
    background: #fff;
    color: #2458ad;
    cursor: pointer;
    font-size: 14px;
    font-weight: 650;
}

.rg-consent-button:hover,
.rg-consent-button:focus-visible {
    background: #eef4ff;
    outline: 2px solid #8cb3f4;
    outline-offset: 2px;
}

.rg-consent-button-primary {
    background: #2f67c8;
    color: #fff;
}

.rg-consent-button-primary:hover,
.rg-consent-button-primary:focus-visible {
    background: #2458ad;
}

.rg-consent-settings-button {
    position: fixed;
    z-index: 2147483643;
    left: 12px;
    bottom: 12px;
    padding: 8px 12px;
    border: 1px solid #cfdaea;
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #435979;
    box-shadow: 0 5px 18px rgba(20, 45, 88, .12);
    cursor: pointer;
    font-size: 12px;
}

.rg-consent-backdrop {
    position: fixed;
    z-index: 2147483646;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(13, 28, 54, .58);
}

.rg-consent-modal {
    width: min(580px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    box-sizing: border-box;
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
}

.rg-consent-category {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-top: 1px solid #e4eaf3;
}

.rg-consent-category:first-of-type {
    margin-top: 16px;
}

.rg-consent-category h3 {
    margin: 0 0 5px;
    font-size: 16px;
}

.rg-consent-category p {
    margin: 0;
    color: #62728b;
    font-size: 13px;
    line-height: 1.55;
}

.rg-consent-switch {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    accent-color: #2f67c8;
}

@media (max-width: 640px) {
    .rg-consent-banner {
        right: 16px;
        bottom: 16px;
        left: 16px;
        width: auto;
    }

    .rg-consent-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rg-consent-button {
        width: 100%;
    }
}

