/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  min-width: 300px;
  max-width: 500px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  border-left: 4px solid #007bff;
}

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

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-content i {
  font-size: 20px;
  flex-shrink: 0;
}

.notification-content span {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

/* Notification Types */
.notification-success {
  border-left-color: #28a745;
}

.notification-success .notification-content i {
  color: #28a745;
}

.notification-error {
  border-left-color: #dc3545;
}

.notification-error .notification-content i {
  color: #dc3545;
}

.notification-info {
  border-left-color: #007bff;
}

.notification-info .notification-content i {
  color: #007bff;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .notification {
    background: #2d3748;
    color: white;
  }
  
  .notification-content span {
    color: white;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
  }
}
