[v-cloak] { display: none; }
body { -webkit-font-smoothing: antialiased; }

/* Standard CSS replacements for Tailwind @apply */
.btn-primary {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: #4f46e5;
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 0.875rem;
}
.btn-primary:hover {
  background-color: #4338ca;
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 1rem;
  background-color: #ffffff;
  color: #4f46e5;
  font-weight: 700;
  border: 2px solid #4f46e5;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 0.875rem;
}
.btn-secondary:hover {
  background-color: #eef2ff;
}

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #ffffff;
  color: #1f2937;
  font-size: 1rem;
}
.input-field:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #6366f1;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
