/* مودال تأیید/هشدار مشترک — admin + shop */

.app-dialog {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.app-dialog[hidden] {
    display: none !important;
}

.app-dialog-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.app-dialog-panel {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.app-dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e6;
}

.app-dialog-header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.app-dialog-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #81858b;
    padding: 0;
}

.app-dialog-body {
    padding: 20px;
}

.app-dialog-body p {
    margin: 0;
    line-height: 1.7;
}

.app-dialog-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid #e0e0e6;
}

.app-dialog-footer .app-dialog-cancel[hidden],
.app-dialog-footer .app-dialog-confirm[hidden] {
    display: none !important;
}
