/* Notification styles */
.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 80%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification i {
  font-size: 18px;
}

.notification.success {
  background: rgba(39, 174, 96, 0.9);
  border-left: 5px solid #27ae60;
}

.notification.error {
  background: rgba(231, 76, 60, 0.9);
  border-left: 5px solid #e74c3c;
}

.notification.info {
  background: rgba(52, 152, 219, 0.9);
  border-left: 5px solid #3498db;
}
