/**
 * Notification styles for Finfluencers.Trade
 */

.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 1rem 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

/* Success state */
.notification.success {
  background-color: #2E7D32;
  color: #ffffff;
}

/* Error state */
.notification.error {
  background-color: #d32f2f;
  color: #ffffff;
}

.notification.show {
  opacity: 1;
  visibility: visible;
}

.notification__content {
  text-align: center;
}

.notification__content p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 76.1875em) {
  .notification {
    width: 90%;
    max-width: 400px;
    padding: 0.8rem 1.5rem;
  }
  
  .notification__content p {
    font-size: 0.85rem;
  }
} 