/* ========== PROFESSIONAL NOTIFICATION SYSTEM ========== */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
}

.notification {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 300px;
  max-width: 450px;
  animation: notificationSlideIn 0.3s ease-out;
  position: relative;
}

.notification.success {
  border-left: 4px solid #4caf50;
}

.notification.error {
  border-left: 4px solid #f44336;
}

.notification.warning {
  border-left: 4px solid #ff9800;
}

.notification.info {
  border-left: 4px solid #2196f3;
}

.notification-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #adb5bd;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.notification-close:hover {
  color: #6c757d;
  background: #f1f3f5;
}

.notification-message {
  color: #343a40;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding-right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.notification-icon svg {
  width: 100%;
  height: 100%;
}

.notification.success .notification-icon svg {
  fill: #4caf50;
}

.notification.error .notification-icon svg {
  fill: #f44336;
}

.notification.warning .notification-icon svg {
  fill: #ff9800;
}

.notification.info .notification-icon svg {
  fill: #2196f3;
}

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

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

.notification.removing {
  animation: notificationSlideOut 0.3s ease-in forwards;
}

/* Responsive Notifications */
@media (max-width: 768px) {
  .notification-container {
    left: 20px;
    right: 20px;
    top: 20px;
  }

  .notification {
    min-width: 0;
    max-width: 100%;
  }
}
