/**
 * Modal de aviso/confirmação — Bellume Club (substitui alert/confirm/prompt nativos)
 */
.bc-site-dialog {
    position: fixed;
    inset: 0;
    z-index: 200010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.bc-site-dialog[hidden] {
    display: none !important;
}

.bc-site-dialog__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.bc-site-dialog__box {
    position: relative;
    z-index: 1;
    width: min(440px, 100%);
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.bc-site-dialog__title {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
}

.bc-site-dialog__message {
    margin: 0 0 18px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #555;
    white-space: pre-line;
}

.bc-site-dialog__input-wrap {
    margin: 0 0 16px;
}

.bc-site-dialog__label {
    display: block;
    margin: 0 0 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #666;
}

.bc-site-dialog__input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    min-height: 72px;
    color: #333;
}

.bc-site-dialog__input:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.15);
}

.bc-site-dialog__input[readonly] {
    background: #f8f8f8;
    cursor: text;
}

.bc-site-dialog__actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.bc-site-dialog__btn {
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s ease, background 0.15s ease;
}

.bc-site-dialog__btn--cancel {
    background: #f0f0f0;
    color: #444;
}

.bc-site-dialog__btn--cancel:hover {
    background: #e4e4e4;
}

.bc-site-dialog__btn--confirm {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: #fff;
}

.bc-site-dialog__btn--confirm:hover {
    opacity: 0.92;
}

.bc-site-dialog__btn--danger {
    background: linear-gradient(135deg, #c62828 0%, #8e0000 100%);
}

.bc-site-dialog__btn[hidden] {
    display: none !important;
}
