.sor-consent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sor-consent-dialog {
    background: #fff;
    color: #222;
    max-width: 560px;
    width: 100%;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    font-size: 15px;
    line-height: 1.5;
    max-height: 90vh;
    overflow-y: auto;
}

.sor-consent-dialog h3 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    color: #143461;
}

.sor-consent-body {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.55;
}

.sor-consent-body a {
    color: #FF7530;
    text-decoration: underline;
}

.sor-consent-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    cursor: pointer;
}

.sor-consent-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.sor-consent-actions button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.sor-consent-reject {
    background: #eee;
    color: #555;
}

.sor-consent-accept {
    background: #FF7530;
    color: #fff;
}

.sor-consent-actions button:hover {
    opacity: 0.85;
}