@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

* {
  font-family: "Inter", sans-serif;
}

body {
  overflow-x: hidden;
}

.logo-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-carousel {
  display: flex;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.logo-item {
  flex: 0 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 35px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.8) opacity(0.7);
  transition: all 0.3s ease;
}

.logo-img:hover {
  filter: brightness(1) opacity(1);
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-carousel-container::before,
.logo-carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.3), transparent);
}

.logo-carousel-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(15, 23, 42, 0.3), transparent);
}

.field-group {
  transition: all 0.3s ease;
}

.field-group:hover {
  box-shadow: 0 8px 16px rgba(79, 70, 229, 0.1);
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #6366f1;
}

input[type="checkbox"]:checked {
  background-color: #6366f1;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

#outputPrompt {
  resize: none;
  font-family: "Courier New", monospace;
  line-height: 1.6;
}

.step-image {
  width: 180px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.95);
}

.step-image:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .step-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .step-image {
    width: 90px;
    height: 90px;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

button:disabled {
  cursor: not-allowed !important;
  opacity: 0.75 !important;
}
