@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
}

#app {
  display: flex;
  height: 100%;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #e5e7eb;
  transition: all 0.2s;
}

.sidebar-btn:hover {
  background-color: #374151;
}

.sidebar-btn.active {
  background-color: #1e40af;
  color: white;
}

#previewBox {
  scrollbar-width: thin;
  scrollbar-color: #4b5563 #1f2937;
}

#previewBox::-webkit-scrollbar {
  width: 6px;
}

#previewBox::-webkit-scrollbar-track {
  background: #1f2937;
}

#previewBox::-webkit-scrollbar-thumb {
  background-color: #4b5563;
  border-radius: 3px;
}

#promptInput {
  color: white;
}
.empty {
  color: #9ca3af;
}
.ai-output {
  margin: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #0f1b2d;
  color: #e5e7eb;
  font-size: 14px;
  white-space: pre-line;
  border-left: 4px solid #3b82f6;
  line-height: 1.5;
}

.bg-gray-700 {
  background-color: #374151;
}

.text-red-400 {
  color: #f87171;
}

.text-sm {
  font-size: 0.875rem;
}
#previewBox .text-sm {
  line-height: 1.5;
}
