/* style.css */
body {
  font-family: 'Prompt', sans-serif;
  background-color: #f4f7f6;
  color: #2c3e50;
}
.main-wrapper {
  max-width: 800px;
  margin-top: 40px;
  margin-bottom: 50px;
}
.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.card-header {
  border-top-left-radius: 16px !important;
  border-top-right-radius: 16px !important;
  padding: 1.5rem;
  background: linear-gradient(135deg, #0b5ed7, #0d6efd) !important;
}
textarea {
  resize: vertical;
  border-radius: 8px;
}
textarea:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}
.btn-primary {
  border-radius: 8px;
  transition: all 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13,110,253,0.3);
}
#aiResponse {
  line-height: 1.6;
  border-left: 4px solid #198754;
}