.ui-notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 350px;
}

.ui-notification {
  background: white;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #007bff;
  position: relative;
  animation: slideIn 0.3s ease-out;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ui-notification--success {
  border-left-color: #28a745;
}

.ui-notification--error {
  border-left-color: #dc3545;
}

.ui-notification--warning {
  border-left-color: #ffc107;
}

.ui-notification--info {
  border-left-color: #17a2b8;
}

.ui-notification-content {
  margin-right: 20px;
  line-height: 1.4;
}

.ui-notification-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #6c757d;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.ui-notification-close:hover {
  background-color: #f8f9fa;
  color: #495057;
}

@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;
  }
}

.ui-notification--hiding {
  animation: slideOut 0.3s ease-in forwards;
}
