body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #f5f5f5;
}

/* Global scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: #b1b1b1;
}

/* Safari specific scrollbar styling */
@supports (-webkit-hyphens: none) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    -webkit-appearance: none;
  }

  ::-webkit-scrollbar-thumb {
    border: 2px solid rgba(255, 255, 255, 0.5);
  }
}

/* Firefox scrollbar styling */
* {
  scrollbar-width: auto;
  scrollbar-color: #d1d1d1 #f1f1f1;
}

#chat-view > div > div:first-child {
  height: 90% !important;
}

#chat-view > div > div:nth-child(2) {
  height: 10% !important;
}

@keyframes jiggle {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px) rotate(-2deg);
  }
  50% {
    transform: translateX(5px) rotate(2deg);
  }
  75% {
    transform: translateX(-3px) rotate(-1deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

.auth-button-hover {
  /*width: 200px;*/
  color: #fff;
  padding: 8px 24px;
  cursor: pointer;
  margin: 0 8px;
  margin-left: 0;
  height: 38px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.auth-button-hover:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.auth-button-hover:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.auth-button-hover:focus {
  outline: none;
}

.auth-button-hover.primary {
  background-color: #43c37c;
  background-image: none;
  box-shadow: 0 4px 14px rgba(67, 195, 124, 0.25);
}

.auth-button-hover.primary:hover {
  background-color: #3db873;
  box-shadow: 0 6px 20px rgba(67, 195, 124, 0.35);
}

.auth-button-hover.outline {
  background-color: #f8f9fa;
  background-image: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #555;
}

.auth-button-hover.outline:hover {
  background-color: #eef0f2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.auth-button-hover.ai {
  background-color: #c45296;
  background-image: none;
  box-shadow: 0 4px 14px rgba(196, 82, 150, 0.25);
}

.auth-button-hover.ai:hover {
  background-color: #b8478a;
  box-shadow: 0 6px 20px rgba(196, 82, 150, 0.35);
}

.auth-button-hover.danger {
  background-color: #ec407a;
  background-image: none;
  box-shadow: 0 4px 14px rgba(236, 64, 122, 0.25);
  color: white;
}

.auth-button-hover.danger:hover {
  background-color: #e03371;
  box-shadow: 0 6px 20px rgba(236, 64, 122, 0.35);
  color: white;
}

.auth-button-hover.disabled {
  opacity: 0.6;
  background-color: #d0d0d0;
  background-image: none;
  box-shadow: none;
  cursor: not-allowed;
}

.auth-button-hover.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Secondary button style */
.auth-button-hover.secondary {
  background-color: #f2f4f6;
  background-image: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.auth-button-hover.secondary:hover {
  background-color: #e5e8ec;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.play-button {
  width: 0;
  height: 0;
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 3px; /* Slight offset to center visually */
}

.play-button-container {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(2px);
}

.play-button-container:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.play-button-container:hover .play-button {
  border-left-color: #f0f0f0;
}


/*# sourceMappingURL=webpack/sourcemaps/auth.45d573e7.css.map*/