/* Custom CSS for AI Playground */

body {
  --font-geist-sans: "Inter", ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-sans {
  font-family: var(--font-geist-sans), ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.bg-background {
  background-color: hsl(var(--background));
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.justify-center {
  justify-content: center;
}

.flex-col {
  flex-direction: column;
}

.w-full {
  width: 100%;
}

.min-h-screen {
  min-height: 90vh;
}

.flex {
  display: flex;
}

.relative {
  position: relative;
}

body {
  background-color: #f8fafc;
  color: #1a202c;
  font-feature-settings: "rlig" 1, "calt" 1;
}

* {
  border-color: #e2e8f0;
}

*,
:after,
:before {
  border: 0 solid #e5e7eb;
  box-sizing: border-box;
}

/* Custom CSS for Enhanced Chat Section */

input::placeholder {
  color: #a0aec0; /* Tailwind Gray-400 */
}

button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.5); /* Tailwind Yellow-300 with opacity */
}

/* Custom CSS for Enhanced AI Models List Section */

ul li:hover {
  background-color: #f0f4f8; /* Slightly darker gray for hover effect */
}

button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); /* Tailwind Blue-400 with opacity */
}

/* Custom CSS for making the AI models list scrollable */

#ai-models-list {
  max-height: 700px; /* Adjust the height as needed */
  overflow-y: auto;
}

#ai-models-list::-webkit-scrollbar {
  width: 8px;
}

#ai-models-list::-webkit-scrollbar-thumb {
  background-color: #a0aec0; /* Tailwind Gray-400 */
  border-radius: 4px;
}

#ai-models-list::-webkit-scrollbar-track {
  background-color: #edf2f7; /* Tailwind Gray-100 */
}

/* Custom CSS for selected model */
#ai-models-list li.selected {
  background-color: #e2e8f0; /* Tailwind Gray-200 */
}
