﻿.consent-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.consent-modal {
    background: var(--bo-theme-primary-soft);
    max-width: 560px;
    width: calc(100% - 2rem);
    border-radius: .55rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    padding: 1.5rem;
}

.consent-modal h2 {
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 0;
}

.consent-modal p {
    margin: 0 0 1rem;
    line-height: 1.5;
    color: #000;
}

.consent-actions {
    display: flex;
    gap: .5rem;
    justify-content: flex-end;
    margin-top: .5rem;
}

.consent-btn {
    appearance: none;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: .6rem .9rem;
    border-radius: 0;
    cursor: pointer;
}

.consent-btn.primary {
    background: #111827;
    color: #fff;
    border-color: #111827;
    border-radius: 0;
}

.consent-link {
    color: #090c13;
    text-decoration: none;
    outline: none;
    font-weight: 600;
}

.consent-link:hover,
.consent-btn:hover {
    opacity: .8;
}

.consent-modal-top {
    display: flex;
    flex-direction: row;
    gap: .45rem;
    padding: .75rem 0;
}

.consent-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
}

.consent-modal-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}