form, table {margin: 10px 0;}
input, button {margin: 5px; padding: 6px;}
table {border-collapse: collapse; width: 100%;}
th, td {border: 1px solid #ddd; padding: 8px; text-align: center;}
th {background: #f1f1f1;}
button {background: #007bff; color: white; border: none; cursor: pointer;}
button:hover {background: #0056b3;}
/* نوتیفیکیشن‌ها */
.mftp-notice {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 18px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mftp-notice.show { opacity: 1; }
.mftp-success { background: #28a745; }
.mftp-error { background: #dc3545; }

/* مودال تأیید حذف */
.mftp-modal-overlay {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}
.mftp-modal {
    background: #fff;
    max-width: 320px;
    margin: 120px auto;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.mftp-modal h3 { margin-bottom: 15px; }
.mftp-modal button {
    margin: 5px;
    padding: 6px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.mftp-confirm { background: #dc3545; color: #fff; }
.mftp-cancel { background: #6c757d; color: #fff; }
