@import url("https://fonts.googleapis.com/css?family=Montserrat:600,500,400,700|Afacad:400");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  font-size: 90% !important;
}

a {
  text-decoration: none;
}

.pb-22 {
  padding-bottom: 80px;
}

/* AI Chat Styles */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

#ai-chat-toggle {
  animation: float 3s ease-in-out infinite;
}

#ai-chat-backdrop {
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
  z-index: 9998 !important;
}

#ai-chat-panel {
  width: 90% !important;
  z-index: 9999 !important;
}

@media (min-width: 768px) {
  #ai-chat-panel {
    width: 50% !important;
  }
}

/* Custom styles for Quill video iframe */
.ql-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  /* 12px, similar to other cards */
  border: 1px solid #e5e7eb;
  /* border-gray-200 */
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  /* shadow-md */
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.ql-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  /* shadow-lg */
}