/* استایل کلی برای همه Toastها */
.custom-toast-global {
    font-family: 'Vazir', sans-serif;
    direction: rtl;
    text-align: right;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* استایل مخصوص محتوای Toast */
  .custom-toast-body {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* استایل Toastهای موفقیت */
  .vue-toastification__toast--success.custom-toast-global {
    background-color: #d4edda;
    color: #155724;
    border-right: 5px solid #28a745;
  }
  
  /* استایل Toastهای خطا */
  .vue-toastification__toast--error.custom-toast-global {
    background-color: #f8d7da;
    color: #721c24;
    border-right: 5px solid #dc3545;
  }
  
  /* استایل Toastهای هشدار */
  .vue-toastification__toast--warning.custom-toast-global {
    background-color: #fff3cd;
    color: #856404;
    border-right: 5px solid #ffc107;
  }
  
  /* استایل Toastهای اطلاع‌رسانی */
  .vue-toastification__toast--info.custom-toast-global {
    background-color: #d1ecf1;
    color: #0c5460;
    border-right: 5px solid #17a2b8;
  }
  
  /* استایل دکمه بستن */
  .custom-toast-close {
    font-size: 16px;
    color: #721c24;
  }
  