
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

.stripe-notification {
  display: flex;
  align-items: flex-start;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  color: #4a4a4a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: all 0.5s ease;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.notification-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.notification-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.logo {
  width: 60px;
  height: auto;
  margin-right: 10px;
}

.notification-text {
  display: flex;
  flex-direction: column;
}

.notification-text strong {
  font-weight: 600;
  font-size: 13.5px;
  color: #222;
  margin-bottom: 2px;
}

.gray {
  color: #777;
  font-size: 12.5px;
}
