.rkfvs-consent-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(17, 20, 28, 0.55);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.rkfvs-consent-overlay--open {
    opacity: 1;
}

.rkfvs-consent-box {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 26px 22px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    text-align: center;
    transform: translateY(14px) scale(0.98);
    transition: transform 0.22s ease;
    font-family: inherit;
}

.rkfvs-consent-overlay--open .rkfvs-consent-box {
    transform: translateY(0) scale(1);
}

.rkfvs-consent-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #667eea;
    background: linear-gradient(135deg, #eef1ff 0%, #f6f0ff 100%);
}

.rkfvs-consent-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.rkfvs-consent-body {
    margin: 0 0 22px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #5a616b;
}

.rkfvs-consent-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.rkfvs-consent-btn {
    flex: 1 1 auto;
    min-width: 140px;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.rkfvs-consent-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.rkfvs-consent-accept {
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.35);
}

.rkfvs-consent-accept:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 9px 20px rgba(102, 126, 234, 0.45);
}

.rkfvs-consent-decline {
    color: #4a4a4a;
    background: #eef0f3;
}

.rkfvs-consent-decline:not(:disabled):hover {
    background: #e3e6ea;
}

@media (max-width: 480px) {
    .rkfvs-consent-box {
        padding: 24px 18px 18px;
    }

    .rkfvs-consent-btn {
        min-width: 0;
    }
}

.rkfvs-consent-status {
    margin: -6px 0 18px;
    font-size: 13px;
    font-weight: 600;
}
.rkfvs-consent-status.is-on { color: #2e7d32; }
.rkfvs-consent-status.is-off { color: #b26a00; }

.rkfvs-account-consent-link .link-item {
    display: block;
    padding: 14px 18px;
    border: 1px solid #ededed;
    border-radius: 4px;
    background: #fff;
    color: inherit;
    box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.15s ease;
}
.rkfvs-account-consent-link:hover .link-item {
    box-shadow: 1px 1px 11px 0 rgba(0, 0, 0, 0.12);
    text-decoration: none;
}
.rkfvs-account-consent-link .material-icons {
    vertical-align: middle;
    margin-right: 8px;
}
