/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10000;
  font-family: inherit;
  font-size: 14px;
  max-width: 350px;
  animation: slideIn 0.3s ease-out;
}

.notification-success {
  background: #4CAF50;
}

.notification-warning {
  background: #FF9800;
}

.notification-info {
  background: #2196F3;
}

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

.notification-icon {
  font-size: 18px;
  font-weight: bold;
}

.notification-exit {
  animation: slideOut 0.3s ease-in;
}

@keyframes slideIn {
  from { 
    transform: translateX(100%); 
    opacity: 0; 
  }
  to { 
    transform: translateX(0); 
    opacity: 1; 
  }
}

@keyframes slideOut {
  from { 
    transform: translateX(0); 
    opacity: 1; 
  }
  to { 
    transform: translateX(100%); 
    opacity: 0; 
  }
}