/* ===== IMPORT VARIABLES ===== */
@import 'variables.css';

/* ===== NOTIFICATIONS ===== */
.notification {
  position: fixed;
  top: 5.625rem;
  right: 1.25rem;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 25rem;
  animation: slideInRight 0.3s ease-out;
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.notification-success {
  background-color: var(--color-success);
}

.notification-error {
  background-color: var(--color-error);
}

.notification-info {
  background-color: #3b82f6;
}

.notification button {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.notification button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}