/* Main Styles */
body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.card-header {
  background-color: #f1f5f9;
}

/* Response Container */
.response-container {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 15px;
  min-height: 200px;
  max-height: 600px;
  overflow-y: auto;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Form Styles */
.form-label {
  font-weight: 500;
}

.required-field::after {
  content: " *";
  color: #dc3545;
}

/* Parameter Styles */
.parameter-group {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.parameter-group:last-child {
  border-bottom: none;
}

.parameter-description {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 5px;
}

/* Insights Fields Styles */
.insights-fields-container {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 10px;
  margin-top: 10px;
}

.field-checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 5px;
  border-radius: 4px;
}

.field-checkbox-group:hover {
  background-color: #f1f5f9;
}

.field-checkbox-group label {
  margin-left: 8px;
  margin-bottom: 0;
  cursor: pointer;
  flex-grow: 1;
  font-size: 0.9rem;
}

/* Loading Indicator */
#loading-indicator {
  padding: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  
  .card {
    margin-bottom: 15px;
  }
  
  .response-container {
    min-height: 150px;
    max-height: 300px;
  }
} 