/* Notification Styles */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 15px 25px;
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 9999;
  pointer-events: auto;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification.fade-out {
  transform: translateY(-100px);
  opacity: 0;
}

.notification.success {
  background-color: #10b981;
  border-left: 4px solid #059669;
}

.notification.error {
  background-color: #ef4444;
  border-left: 4px solid #dc2626;
}

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

.notification-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0 0 0 15px;
  margin: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
  line-height: 1;
}

.notification-close:hover {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .notification {
    left: 15px;
    right: 15px;
    max-width: calc(100% - 30px);
    bottom: 20px;
  }
}
