/* ── Flash prevention ───────────────────────────── */
[x-cloak] { display: none !important; }

/* ── Modal overlay ──────────────────────────────── */
.bp-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-modal-box {
    background: #1e1e2e;
    border-radius: 12px;
    padding: 24px;
    width: min(95vw, 480px);
    text-align: center;
    color: #fff;
}

.bp-modal-box h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.bp-modal-box p {
    margin: 0 0 16px;
    font-size: .85rem;
    color: #aaa;
}

/* ── Camera / preview ───────────────────────────── */
.bp-video {
    width: 100%;
    max-height: 280px;
    border-radius: 8px;
    background: #000;
    object-fit: cover;
    transform: scaleX(-1);
}

.bp-canvas {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.bp-btn-row {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

/* ── Buttons ────────────────────────────────────── */
.bp-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    color: #fff;
    transition: opacity .2s;
}

.bp-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.bp-btn-primary { background: #4f46e5; }
.bp-btn-success { background: #16a34a; }
.bp-btn-neutral { background: #6b7280; }

.bp-btn-skip {
    padding: 10px 16px;
    background: transparent;
    color: #666;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: .9rem;
    cursor: pointer;
}

/* ── Error state ────────────────────────────────── */
.bp-error-text {
    color: #f87171;
    margin: 0 0 16px;
}

/* ── GPS status indicator ───────────────────────── */
.bp-gps-status {
    font-size: .8rem;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bp-gps-status .material-icons {
    font-size: 14px;
}
