/* Notifications Toast - O'Crochet d'Amitie */

.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  z-index: 10000;
  transform: translateX(150%);
  transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

.notification i {
  font-size: 1.3rem;
}

.notification-success {
  border-left: 4px solid #27ae60;
}

.notification-success i {
  color: #27ae60;
}

.notification-info {
  border-left: 4px solid rgba(142, 68, 173, 1);
}

.notification-info i {
  color: rgba(142, 68, 173, 1);
}

.notification-error {
  border-left: 4px solid #e74c3c;
}

.notification-error i {
  color: #e74c3c;
}

.notification-warning {
  border-left: 4px solid #f39c12;
}

.notification-warning i {
  color: #f39c12;
}

/* Responsive */
@media (max-width: 600px) {
  .notification {
    bottom: 20px;
    right: 20px;
    left: 20px;
    transform: translateY(150%);
  }

  .notification.show {
    transform: translateY(0);
  }
}
