.docs-content code,
.docs-content code * {
  font-family: "JetBrains Mono", monospace !important;
  font-weight: 400;
}

.docs-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1.5px solid #f2e6de;
  border-radius: 999px;
  background: #ffffff;
  color: #4b4c5a;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
}

.docs-tab.active {
  border-color: #fd3f84;
  color: #2C254F;
  background: linear-gradient(135deg, rgba(253,63,132,0.12), rgba(255,209,194,0.16));
  box-shadow: 0 18px 48px rgba(253,63,132,0.18);
}

.docs-llm-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  min-height: 32px;
  border: 0;
  background: transparent;
  color: #42526e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.docs-llm-copy:hover {
  color: #2C254F;
}

.docs-llm-copy.hidden {
  display: none;
}

.docs-card {
  border: 1px solid #f2e6de;
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  box-shadow: 0 28px 70px rgb(255 252 248);
}

@media (min-width: 640px) {
  .docs-card {
    padding: 28px;
  }
}

.docs-code {
  background: #0b1224;
  border: 1px solid #1e293b;
  border-radius: 18px;
  overflow-x: auto;
  box-shadow: none;
}

.docs-code code {
  color: #e8e8f5;
}

.docs-content a:not(.btn-primary) { color: inherit; text-decoration: none; }

.docs-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C254F;
}

.docs-table-wrapper {
  width: 100%;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .docs-table-wrapper {
    margin: 0;
    padding: 0;
  }
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
}

.docs-table th,
.docs-table td {
  padding: 12px 14px;
  border: 1px solid #efe7e0;
  text-align: left;
  font-size: 14px;
}

.docs-table th {
  background: #fff7f2;
  font-weight: 700;
  color: #2C254F;
}

.docs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.docs-badge-required {
  background: #fd3f84;
  color: #fff;
  box-shadow: 0 10px 28px rgba(253,63,132,0.22);
}

.docs-note {
  background: #fff7f2;
  border: 1px solid #f4e0d6;
  padding: 15px;
  border-radius: 16px;
}

.docs-warning {
  background: #fff6fa;
  border: 1px solid #ffe1ec;
  padding: 15px;
  border-radius: 16px;
}
.docs-link {
  color: #f04f8c;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #f04f8c;
}
