.api-tester {
  padding: 24px;
  border-radius: 16px;
  color: #EEEEEE;
  transition: all 0.3s ease;
}

.api-tester h2 {
    font-family: 'Lemon Milk', sans-serif;
    font-size: 1.5rem;
    color: #1dd1a1;
    text-align: center;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    box-shadow: none;
    position: relative;
    top: -19px;
}

.api-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.api-controls input,
.api-controls select,
.api-controls textarea {
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  background: rgba(50, 50, 70, 0.55);
  color: #EEEEEE;
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 0 0 2px rgba(125, 95, 255, 0.3);
}

.api-controls input:focus,
.api-controls select:focus,
.api-controls textarea:focus {
  outline: none;
  background-color: #2b3039;
  box-shadow: 0 0 6px rgba(118, 171, 174, 0.4);
}

.api-controls textarea {
  min-height: 100px;
  resize: vertical;
}

#sendRequest {
  align-self: flex-end;
  padding: 12px 22px;
  font-family: 'LemonMilk', sans-serif;
  background: linear-gradient(135deg, #506EEC, #7d5fff);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(80, 110, 236, 0.4);
  font-family: 'Lemon Milk', sans-serif;
  color: white !important;
}

#sendRequest:hover {
  background: linear-gradient(135deg, #506EEC, #7d5fff);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(125, 95, 255, 0.3);
  color: white;
}

.response-section {
  margin-top: 25px;
  background: rgba(49, 54, 63, 0.6);
  padding: 16px;
  border-radius: 12px;
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid rgba(118, 171, 174, 0.1);
  box-shadow: inset 0 0 8px rgba(118, 171, 174, 0.15);
}

#responseOutput {
  white-space: pre-wrap;
  color: #76ABAE;
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  line-height: 1.4;
}
