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

.vladi-modal-overlay > div {
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.vladi-modal-box {
    width: 360px;
    max-width: 90vw;
    padding: 24px;
}

.vladi-modal-message {
    min-height: 24px;
    margin-bottom: 20px;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.6;
    word-break: keep-all;
}

.vladi-modal-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.vladi-modal-actions button {
    min-width: 72px;
    height: 40px;
    padding: 0 20px;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.vladi-modal-confirm {
    background: #2563eb;
    color: #fff;
}

.vladi-modal-cancel {
    background: #f3f4f6;
    color: #374151;
}
