/**
 * 🎨 استایل صفحه مدیریت خروج سیستمی
 */

* { 
  font-family: 'Vazirmatn', sans-serif !important; 
}

.card { 
  border-radius: 12px !important; 
  border: 1px solid #e2e8f0; 
}

.btn-modern { 
  border-radius: 8px; 
  font-weight: 500; 
  transition: all 0.2s ease; 
}

.btn-modern:hover { 
  transform: translateY(-1px); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
}

.status-indicator { 
  width: 12px; 
  height: 12px; 
  border-radius: 50%; 
  display: inline-block; 
  margin-left: 8px; 
}

.status-active { 
  background: #10b981; 
}

.status-inactive { 
  background: #ef4444; 
}

.stats-card { 
  background: white; 
  border: 1px solid #e2e8f0; 
  border-radius: 8px; 
  transition: all 0.2s ease; 
}

.stats-card:hover { 
  border-color: #cbd5e0; 
  transform: translateY(-1px); 
}

.network-error-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  min-width: 300px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}