/* Privacy Policy Page */

html.dark-theme-html .mt-4.rounded-2xl.bg-white.border {
  background-color: #1a1a1a !important;
  border-color: #404040 !important;
}

.modern-btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: black;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.modern-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.chatbot-widget {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chatbot-window {
  width: 400px;
  max-width: 95vw;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(47, 63, 147, 0.18);
  overflow: hidden;
  display: none;
  flex-direction: column;
  margin-bottom: 12px;
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
