.api-credentials {
  background: #2d3748;
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
  .api-credentials h3 {
    margin-top: 0;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem; }
  .api-credentials .form-group {
    margin-bottom: 1rem; }
    .api-credentials .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: #cbd5e0;
      font-size: 0.9rem; }
    .api-credentials .form-group input {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #4a5568;
      border-radius: 4px;
      background: #1a202c;
      color: #fff;
      font-size: 0.9rem;
      transition: border-color 0.2s; }
      .api-credentials .form-group input:focus {
        outline: none;
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2); }
  .api-credentials button {
    background: #4299e1;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s; }
    .api-credentials button:hover {
      background: #3182ce; }
    .api-credentials button:disabled {
      background: #718096;
      cursor: not-allowed; }

.try-it-out {
  background: #2d3748;
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
  .try-it-out h3 {
    margin-top: 0;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem; }
  .try-it-out .request-editor {
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
    height: 200px;
    border: 1px solid #4a5568; }
  .try-it-out .execute-button {
    background: #48bb78;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: all 0.2s; }
    .try-it-out .execute-button:hover {
      background: #38a169; }
    .try-it-out .execute-button:disabled {
      background: #718096;
      cursor: not-allowed; }
  .try-it-out .response-output {
    background: #1a202c;
    padding: 1rem;
    border: 1px solid #4a5568;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-wrap;
    margin: 0;
    color: #cbd5e0;
    max-height: 400px;
    overflow-y: auto; }
    .try-it-out .response-output.success {
      border-color: #48bb78; }
    .try-it-out .response-output.error {
      border-color: #f56565; }

.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  color: white;
  font-weight: 500;
  animation: slideIn 0.3s ease-out;
  z-index: 1000; }
  .notification.success {
    background: #48bb78; }
  .notification.error {
    background: #f56565; }

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0; }
  to {
    transform: translateY(0);
    opacity: 1; } }
