body, .dashboard-grid, .card, .stats-grid, .stat-item, .quick-actions, .action-btn {
  font-family: 'Segoe UI', Arial, sans-serif !important;
/* Toast notification moderne */
.toast-notification {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 9999;
  min-width: 280px;
  max-width: 350px;
  padding: 18px 22px 18px 18px;
  border-radius: 10px;
  box-shadow: 0 6px 32px rgba(52, 152, 219, 0.18), 0 1.5px 6px rgba(0,0,0,0.08);
  color: #fff;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #3498db 60%, #6dd5fa 100%);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s, transform 0.5s;
  animation: toast-in 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}

.toast-notification.success {
  background: linear-gradient(90deg, #27ae60 60%, #6dd5fa 100%);
}
.toast-notification.error {
  background: linear-gradient(90deg, #e74c3c 60%, #f9d423 100%);
}

.toast-notification i {
  font-size: 1.5em;
  margin-right: 6px;
  opacity: 0.92;
}


@keyframes toast-in {
  0% {
    opacity: 0;
    transform: translateY(-40px) scale(0.95);
  }
  80% {
    opacity: 1;
    transform: translateY(6px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
}

/* Dashboard standard minimal */

.dashboard-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}


.card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  margin: 0;
}

.card-header {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 8px;
}


.stats-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


.stat-item {
  background: #f5f6fa;
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
  flex: 1 1 120px;
  min-width: 90px;
  border: 1px solid #e0e0e0;
}


.stat-icon {
  font-size: 1.3rem;
  color: #3498db;
  margin-bottom: 4px;
}


.stat-value {
  font-size: 1.05rem;
  font-weight: bold;
  color: #222;
}


.stat-label {
  margin-top: 2px;
  font-size: 0.85rem;
  color: #666;
}


.quick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}


.action-btn {
  padding: 7px 12px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.92em;
  color: #fff;
  background: #3498db;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}


.action-btn:hover {
  background: #217dbb;
}


@media (max-width: 900px) {
  .dashboard-grid {
    gap: 8px;
  }
  .stats-grid {
    gap: 4px;
  }
}

@media (max-width: 600px) {
  .dashboard-grid {
    gap: 4px;
  }
  .card {
    padding: 7px;
  }
  .stats-grid {
    flex-direction: column;
    gap: 4px;
  }
  .quick-actions {
    flex-direction: column;
    gap: 4px;
  }
}