/* Custom styling for Marketplaces documentation */

/* Table Styling */
.marketplace-docs table {
  width: 100%;
  table-layout: auto;
  max-width: 100%;
}

.marketplace-docs table thead tr th:first-child {
  width: 15%;
  min-width: 150px;
}

.marketplace-docs table thead tr th:last-child {
  width: 85%;
}

.marketplace-docs table tbody tr td {
  vertical-align: top;
  padding: 16px 12px;
}

.marketplace-docs table tbody tr td:first-child {
  vertical-align: middle !important;
}

.marketplace-docs table tbody tr td:last-child {
  line-height: 1.6;
}

/* Endpoint Header Styling */
.marketplace-docs .endpoint-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 24px 0;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* HTTP Method Badge */
.marketplace-docs .http-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 60px;
}

.marketplace-docs .http-method.post {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.marketplace-docs .http-method.get {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.marketplace-docs .http-method.put {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.marketplace-docs .http-method.delete {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

/* Endpoint Path */
.marketplace-docs .endpoint-path {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Courier New', Monaco, monospace;
  color: #1e293b;
  background: white;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  flex: 1;
}

