@/* ===== vh-modal-form styles ===== */

/* --- Image overlay --- */
.vh-modal-image {
    /* sized via inline styles from JS */
    object-fit: contain;
}

/* --- Backdrop (confirm/form dialogs) --- */
.vh-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Dialog box --- */
.vh-modal-dialog {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px 36px;
    max-width: 90vw;
    min-width: 280px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.vh-modal-title {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 700;
    color: #f4e58a;
}

.vh-modal-text {
    margin: 0 0 24px 0;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

/* --- Button row --- */
.vh-modal-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.vh-modal-btn {
    min-width: 100px;
    font-size: 16px;
    padding: 12px 20px;
}
