/* identity-widget.css — minimal styling for the key/restore modal.
   Tweak colors/fonts to match your existing style.css variables. */

.bbs-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.bbs-modal {
    background: #0a0a0a;
    border: 1px solid #ffc933;
    color: #ffc933;
    font-family: monospace;
    padding: 24px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 16px rgba(51, 255, 102, 0.3);
}

.bbs-key-box {
    margin: 16px 0;
    padding: 12px;
    border: 1px dashed #ffc933;
    font-size: 12px;
    letter-spacing: 1px;
    word-break: break-all;
}

.bbs-key-input {
    width: 100%;
    background: #111;
    color: #ffc933;
    border: 1px solid #ffc933;
    font-family: monospace;
    padding: 8px;
    margin: 12px 0;
    box-sizing: border-box;
    text-align: center;
}

.bbs-action-btn,
.bbs-modal-close {
    background: none;
    border: 1px solid #ffc933;
    color: #ffc933;
    font-family: monospace;
    padding: 6px 14px;
    margin: 6px 4px 0;
    cursor: pointer;
}

.bbs-action-btn:hover,
.bbs-modal-close:hover {
    background: #ffc933;
    color: #0a0a0a;
}

.bbs-restore-msg {
    min-height: 1.2em;
    font-size: 0.8em;
}