.feedback-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  background: linear-gradient(
    135deg,
    rgba(163, 190, 140, 0.95),
    rgba(136, 192, 208, 0.95)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(163, 190, 140, 0.6);
  border-radius: 12px;
  box-shadow:
    0 8px 24px rgba(15, 17, 22, 0.4),
    0 0 20px rgba(163, 190, 140, 0.3);
  animation: slideUp 0.3s ease-out;
  min-width: 280px;
  max-width: 90vw;
}

.feedback-notification.is-hidden {
  display: none;
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.feedback-notification-content {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-notification-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(46, 52, 64, 0.95);
}

.feedback-notification-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: rgba(46, 52, 64, 0.95);
  line-height: 1.4;
}

@media (max-width: 720px) {
  .feedback-notification {
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: none;
    min-width: auto;
  }

  @keyframes slideUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .feedback-notification-content {
    padding: 10px 16px;
    gap: 10px;
  }

  .feedback-notification-text {
    font-size: 13px;
  }

  .feedback-notification-icon {
    width: 18px;
    height: 18px;
  }
}
