@charset "UTF-8";
/* line 18, app/assets/stylesheets/guides.scss */
body.guides-body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
}

/* line 32, app/assets/stylesheets/guides.scss */
.guides-header {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  height: 56px;
  background-color: #0d0d0d;
  border-bottom: 1px solid #1a1a1a;
  z-index: 99;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

/* line 46, app/assets/stylesheets/guides.scss */
.guides-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* line 55, app/assets/stylesheets/guides.scss */
.guides-logo {
  font-size: 16px;
  font-weight: 600;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 63, app/assets/stylesheets/guides.scss */
.guides-logo::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #48d597;
  border-radius: 4px;
}

/* line 73, app/assets/stylesheets/guides.scss */
.guides-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 82, app/assets/stylesheets/guides.scss */
.guides-nav-link {
  display: inline-block;
  padding: 8px 16px;
  color: #888888;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.15s, background-color 0.15s;
}

/* line 92, app/assets/stylesheets/guides.scss */
.guides-nav-link:hover {
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 97, app/assets/stylesheets/guides.scss */
.guides-nav-link.active {
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.08);
}

/* line 104, app/assets/stylesheets/guides.scss */
.guides-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 60px;
}

/* line 111, app/assets/stylesheets/guides.scss */
.guides-sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 260px;
  background-color: #111111;
  border-right: 1px solid #1a1a1a;
  overflow-y: auto;
  padding: 24px 0;
}

/* line 122, app/assets/stylesheets/guides.scss */
.guides-sidebar::-webkit-scrollbar {
  width: 6px;
}

/* line 126, app/assets/stylesheets/guides.scss */
.guides-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

/* line 130, app/assets/stylesheets/guides.scss */
.guides-sidebar::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 3px;
}

/* line 136, app/assets/stylesheets/guides.scss */
.guides-sidebar-search {
  padding: 0 16px 16px;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 16px;
}

/* line 142, app/assets/stylesheets/guides.scss */
.guides-search-input {
  width: 100%;
  padding: 10px 12px;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 6px;
  color: #e0e0e0;
  font-size: 13px;
}

/* line 151, app/assets/stylesheets/guides.scss */
.guides-search-input::placeholder {
  color: #666666;
}

/* line 155, app/assets/stylesheets/guides.scss */
.guides-search-input:focus {
  outline: none;
  border-color: #48d597;
}

/* line 161, app/assets/stylesheets/guides.scss */
.guides-sidebar-section {
  margin-bottom: 24px;
}

/* line 165, app/assets/stylesheets/guides.scss */
.guides-sidebar-title {
  padding: 0 16px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888888;
}

/* line 175, app/assets/stylesheets/guides.scss */
.guides-sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 181, app/assets/stylesheets/guides.scss */
.guides-sidebar-link {
  display: block;
  padding: 8px 16px;
  color: #888888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s, background-color 0.15s;
}

/* line 189, app/assets/stylesheets/guides.scss */
.guides-sidebar-link:hover {
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.03);
}

/* line 194, app/assets/stylesheets/guides.scss */
.guides-sidebar-link.active {
  color: #48d597;
  background-color: rgba(72, 213, 151, 0.08);
  border-left: 2px solid #48d597;
  padding-left: 14px;
}

/* line 201, app/assets/stylesheets/guides.scss */
.guides-sidebar-link.guides-sidebar-link--api {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 208, app/assets/stylesheets/guides.scss */
.guides-sidebar-badge {
  display: inline-block;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #48d597;
  border: 1px solid #48d597;
  border-radius: 4px;
  line-height: 1.4;
}

/* line 222, app/assets/stylesheets/guides.scss */
.guides-content {
  flex: 1;
  margin-left: 260px;
  padding: 48px 80px;
  max-width: 800px;
}

/* line 229, app/assets/stylesheets/guides.scss */
.guides-article-header {
  margin-bottom: 48px;
}

/* line 233, app/assets/stylesheets/guides.scss */
.guides-article-category {
  display: inline-block;
  padding: 4px 10px;
  background-color: rgba(72, 213, 151, 0.1);
  color: #48d597;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* line 246, app/assets/stylesheets/guides.scss */
.guides-article-title {
  font-size: 42px;
  font-weight: 600;
  color: #e0e0e0;
  margin: 0 0 16px;
  line-height: 1.2;
}

/* line 254, app/assets/stylesheets/guides.scss */
.guides-article-subtitle {
  font-size: 18px;
  color: #888888;
  margin: 0;
  line-height: 1.5;
}

/* line 262, app/assets/stylesheets/guides.scss */
.guides-block {
  margin-bottom: 32px;
  scroll-margin-top: 80px;
}

/* line 267, app/assets/stylesheets/guides.scss */
.guides-block-anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

/* line 276, app/assets/stylesheets/guides.scss */
.guides-text-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #e0e0e0;
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1a1a1a;
}

/* line 284, app/assets/stylesheets/guides.scss */
.guides-text-content h2:first-child {
  margin-top: 0;
}

/* line 289, app/assets/stylesheets/guides.scss */
.guides-text-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #e0e0e0;
  margin: 32px 0 12px;
}

/* line 296, app/assets/stylesheets/guides.scss */
.guides-text-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #e0e0e0;
  margin: 24px 0 8px;
}

/* line 303, app/assets/stylesheets/guides.scss */
.guides-text-content p {
  margin: 0 0 16px;
  color: #e0e0e0;
}

/* line 308, app/assets/stylesheets/guides.scss */
.guides-text-content a {
  color: #48d597;
  text-decoration: none;
}

/* line 312, app/assets/stylesheets/guides.scss */
.guides-text-content a:hover {
  text-decoration: underline;
}

/* line 317, app/assets/stylesheets/guides.scss */
.guides-text-content code {
  display: inline-block;
  padding: 2px 6px;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 13px;
  color: #48d597;
}

/* line 328, app/assets/stylesheets/guides.scss */
.guides-text-content pre {
  margin: 16px 0;
  padding: 16px 20px;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  overflow-x: auto;
}

/* line 336, app/assets/stylesheets/guides.scss */
.guides-text-content pre code {
  display: block;
  padding: 0;
  background: none;
  border: none;
  color: #e0e0e0;
}

/* line 345, app/assets/stylesheets/guides.scss */
.guides-text-content ul, .guides-text-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

/* line 350, app/assets/stylesheets/guides.scss */
.guides-text-content li {
  margin-bottom: 8px;
}

/* line 354, app/assets/stylesheets/guides.scss */
.guides-text-content blockquote {
  margin: 16px 0;
  padding: 16px 20px;
  background-color: rgba(72, 213, 151, 0.05);
  border-left: 3px solid #48d597;
  border-radius: 0 8px 8px 0;
}

/* line 361, app/assets/stylesheets/guides.scss */
.guides-text-content blockquote p:last-child {
  margin-bottom: 0;
}

/* line 368, app/assets/stylesheets/guides.scss */
.guides-code-block {
  position: relative;
  margin: 16px 0;
}

/* line 373, app/assets/stylesheets/guides.scss */
.guides-code-label {
  position: absolute;
  top: 8px;
  right: 44px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666666;
}

/* line 384, app/assets/stylesheets/guides.scss */
.guides-code-copy {
  position: absolute;
  top: 4px;
  right: 8px;
  padding: 4px;
  background: transparent;
  border: none;
  color: #666666;
  cursor: pointer;
  transition: color 0.15s ease;
}

/* line 395, app/assets/stylesheets/guides.scss */
.guides-code-copy:hover {
  color: #e0e0e0;
}

/* line 399, app/assets/stylesheets/guides.scss */
.guides-code-copy .icon {
  width: 16px;
  height: 16px;
}

/* line 406, app/assets/stylesheets/guides.scss */
.guides-image-content {
  margin: 24px 0;
}

/* line 409, app/assets/stylesheets/guides.scss */
.guides-image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #1a1a1a;
}

/* line 416, app/assets/stylesheets/guides.scss */
.guides-image-content figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #888888;
  text-align: center;
}

/* line 425, app/assets/stylesheets/guides.scss */
.guides-text-content details {
  margin: 16px 0 24px;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  background: #111111;
}

/* line 431, app/assets/stylesheets/guides.scss */
.guides-text-content details summary {
  cursor: pointer;
  padding: 12px 16px;
  font-size: 14px;
  color: #888888;
  list-style: none;
}

/* line 438, app/assets/stylesheets/guides.scss */
.guides-text-content details summary::-webkit-details-marker {
  display: none;
}

/* line 442, app/assets/stylesheets/guides.scss */
.guides-text-content details summary::before {
  content: "▸ ";
  color: #48d597;
}

/* line 447, app/assets/stylesheets/guides.scss */
.guides-text-content details summary:hover {
  color: #e0e0e0;
}

/* line 452, app/assets/stylesheets/guides.scss */
.guides-text-content details[open] summary::before {
  content: "▾ ";
}

/* line 457, app/assets/stylesheets/guides.scss */
.guides-bot-guide {
  padding: 0 16px 16px;
}

/* line 460, app/assets/stylesheets/guides.scss */
.guides-bot-guide h4 {
  margin: 20px 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #e0e0e0;
}

/* line 466, app/assets/stylesheets/guides.scss */
.guides-bot-guide h4:first-child {
  margin-top: 4px;
}

/* line 471, app/assets/stylesheets/guides.scss */
.guides-bot-guide p {
  font-size: 14px;
  line-height: 1.6;
  color: #888888;
}

/* line 477, app/assets/stylesheets/guides.scss */
.guides-bot-guide ul {
  margin: 8px 0;
  padding-left: 20px;
}

/* line 481, app/assets/stylesheets/guides.scss */
.guides-bot-guide ul li {
  font-size: 14px;
  line-height: 1.6;
  color: #888888;
  margin-bottom: 4px;
}

/* line 489, app/assets/stylesheets/guides.scss */
.guides-bot-guide .guides-code-block {
  margin: 12px 0;
}

/* line 495, app/assets/stylesheets/guides.scss */
.guides-video-content {
  margin: 24px 0;
}

/* line 500, app/assets/stylesheets/guides.scss */
.guides-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #48d597;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.15s;
}

/* line 510, app/assets/stylesheets/guides.scss */
.guides-button:hover {
  background-color: #5ae0a5;
  color: #000;
}

/* line 516, app/assets/stylesheets/guides.scss */
.guides-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #1a1a1a;
}

/* line 524, app/assets/stylesheets/guides.scss */
.guides-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 535, app/assets/stylesheets/guides.scss */
.guides-toc {
  position: fixed;
  top: 60px;
  right: 0;
  width: 220px;
  height: calc(100vh - 60px);
  padding: 32px 24px;
  overflow-y: auto;
  border-left: 1px solid #1a1a1a;
}

/* line 545, app/assets/stylesheets/guides.scss */
.guides-toc::-webkit-scrollbar {
  width: 4px;
}

/* line 549, app/assets/stylesheets/guides.scss */
.guides-toc::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 2px;
}

/* line 555, app/assets/stylesheets/guides.scss */
.guides-toc-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888888;
  margin-bottom: 12px;
}

/* line 564, app/assets/stylesheets/guides.scss */
.guides-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 570, app/assets/stylesheets/guides.scss */
.guides-toc-link {
  display: block;
  padding: 6px 0;
  color: #666666;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.15s;
}

/* line 579, app/assets/stylesheets/guides.scss */
.guides-toc-link:hover {
  color: #e0e0e0;
}

/* line 583, app/assets/stylesheets/guides.scss */
.guides-toc-link.active {
  color: #48d597;
}

/* line 587, app/assets/stylesheets/guides.scss */
.guides-toc-link.indent-1 {
  padding-left: 12px;
  font-size: 12px;
}

/* line 592, app/assets/stylesheets/guides.scss */
.guides-toc-link.indent-2 {
  padding-left: 24px;
  font-size: 12px;
}

@media (max-width: 1200px) {
  /* line 600, app/assets/stylesheets/guides.scss */
  .guides-toc {
    display: none;
  }
  /* line 604, app/assets/stylesheets/guides.scss */
  .guides-content {
    max-width: none;
    padding-right: 48px;
  }
}

@media (max-width: 900px) {
  /* line 611, app/assets/stylesheets/guides.scss */
  .guides-sidebar {
    display: none;
  }
  /* line 615, app/assets/stylesheets/guides.scss */
  .guides-content {
    margin-left: 0;
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  /* line 622, app/assets/stylesheets/guides.scss */
  .guides-header {
    padding: 0 16px;
  }
  /* line 626, app/assets/stylesheets/guides.scss */
  .guides-nav-links {
    display: none;
  }
  /* line 630, app/assets/stylesheets/guides.scss */
  .guides-article-title {
    font-size: 32px;
  }
  /* line 634, app/assets/stylesheets/guides.scss */
  .guides-content {
    padding: 24px 16px;
  }
}

/* line 644, app/assets/stylesheets/guides.scss */
.api-endpoint-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

/* line 651, app/assets/stylesheets/guides.scss */
.api-section-card {
  background: #111111;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  transition: border-color 0.15s;
}

/* line 658, app/assets/stylesheets/guides.scss */
.api-section-card:hover {
  border-color: #48d597;
}

/* line 662, app/assets/stylesheets/guides.scss */
.api-section-card h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
}

/* line 666, app/assets/stylesheets/guides.scss */
.api-section-card h3 a {
  color: #e0e0e0;
  text-decoration: none;
}

/* line 670, app/assets/stylesheets/guides.scss */
.api-section-card h3 a:hover {
  color: #48d597;
}

/* line 676, app/assets/stylesheets/guides.scss */
.api-section-card .api-section-count {
  font-size: 13px;
  color: #888888;
  margin-bottom: 12px;
}

/* line 683, app/assets/stylesheets/guides.scss */
.api-endpoint-preview {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

/* line 689, app/assets/stylesheets/guides.scss */
.api-endpoint-preview li {
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 695, app/assets/stylesheets/guides.scss */
.api-endpoint-preview li.more {
  color: #666666;
  font-style: italic;
}

/* line 703, app/assets/stylesheets/guides.scss */
.api-endpoint {
  margin: 32px 0;
  padding: 24px;
  background: #111111;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
}

/* line 710, app/assets/stylesheets/guides.scss */
.api-endpoint h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px 0;
  font-size: 16px;
}

/* line 719, app/assets/stylesheets/guides.scss */
.api-endpoint .api-summary {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 16px;
}

/* line 725, app/assets/stylesheets/guides.scss */
.api-endpoint h4 {
  font-size: 14px;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 24px 0 12px 0;
}

/* line 736, app/assets/stylesheets/guides.scss */
.api-method {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  font-family: monospace;
  text-transform: uppercase;
}

/* line 745, app/assets/stylesheets/guides.scss */
.api-method.method-get {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

/* line 750, app/assets/stylesheets/guides.scss */
.api-method.method-post {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

/* line 755, app/assets/stylesheets/guides.scss */
.api-method.method-put, .api-method.method-patch {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
}

/* line 761, app/assets/stylesheets/guides.scss */
.api-method.method-delete {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* line 768, app/assets/stylesheets/guides.scss */
code.method-get,
code.method-post,
code.method-put,
code.method-patch,
code.method-delete {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}

/* line 779, app/assets/stylesheets/guides.scss */
code.method-get {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

/* line 784, app/assets/stylesheets/guides.scss */
code.method-post {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

/* line 789, app/assets/stylesheets/guides.scss */
code.method-put,
code.method-patch {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
}

/* line 795, app/assets/stylesheets/guides.scss */
code.method-delete {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* line 801, app/assets/stylesheets/guides.scss */
.api-path {
  font-family: monospace;
  font-size: 14px;
  color: #e0e0e0;
  background: transparent;
}

/* line 809, app/assets/stylesheets/guides.scss */
.api-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 817, app/assets/stylesheets/guides.scss */
.api-badge.deprecated {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* line 822, app/assets/stylesheets/guides.scss */
.api-badge.auth {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

/* line 829, app/assets/stylesheets/guides.scss */
.api-params-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 12px 0;
}

/* line 835, app/assets/stylesheets/guides.scss */
.api-params-table th {
  text-align: left;
  padding: 10px 12px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  font-weight: 600;
  color: #888888;
  font-size: 12px;
  text-transform: uppercase;
}

/* line 846, app/assets/stylesheets/guides.scss */
.api-params-table td {
  padding: 10px 12px;
  border: 1px solid #1a1a1a;
  vertical-align: top;
}

/* line 851, app/assets/stylesheets/guides.scss */
.api-params-table td code {
  background: #1a1a1a;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
}

/* line 859, app/assets/stylesheets/guides.scss */
.api-params-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* line 865, app/assets/stylesheets/guides.scss */
.api-response {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}

/* line 872, app/assets/stylesheets/guides.scss */
.api-response-code {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: monospace;
}

/* line 880, app/assets/stylesheets/guides.scss */
.api-response-code.code-2xx {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

/* line 885, app/assets/stylesheets/guides.scss */
.api-response-code.code-4xx {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
}

/* line 890, app/assets/stylesheets/guides.scss */
.api-response-code.code-5xx {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* line 896, app/assets/stylesheets/guides.scss */
.api-response-desc {
  color: #888888;
  font-size: 14px;
}

/* line 902, app/assets/stylesheets/guides.scss */
.api-schema {
  margin: 32px 0;
  padding-bottom: 32px;
  border-bottom: 1px solid #1a1a1a;
}

/* line 907, app/assets/stylesheets/guides.scss */
.api-schema:last-child {
  border-bottom: none;
}

/* line 911, app/assets/stylesheets/guides.scss */
.api-schema h3 {
  font-size: 20px;
  margin: 0 0 12px 0;
  color: #48d597;
}

/* line 923, app/assets/stylesheets/guides.scss */
.guides-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

/* line 929, app/assets/stylesheets/guides.scss */
.guides-table th {
  text-align: left;
  padding: 12px 16px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  font-weight: 600;
  color: #e0e0e0;
}

/* line 938, app/assets/stylesheets/guides.scss */
.guides-table td {
  padding: 12px 16px;
  border: 1px solid #1a1a1a;
  vertical-align: top;
  color: #888888;
}

/* line 944, app/assets/stylesheets/guides.scss */
.guides-table td strong {
  color: #e0e0e0;
}

/* line 949, app/assets/stylesheets/guides.scss */
.guides-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* line 955, app/assets/stylesheets/guides.scss */
.guides-callout {
  padding: 16px 20px;
  border-radius: 8px;
  margin: 24px 0;
  border-left: 4px solid;
}

/* line 961, app/assets/stylesheets/guides.scss */
.guides-callout.info {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

/* line 966, app/assets/stylesheets/guides.scss */
.guides-callout.warning {
  background: rgba(249, 115, 22, 0.1);
  border-color: #f97316;
}

/* line 971, app/assets/stylesheets/guides.scss */
.guides-callout.success {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
}

/* line 976, app/assets/stylesheets/guides.scss */
.guides-callout.danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

/* line 981, app/assets/stylesheets/guides.scss */
.guides-callout strong {
  color: #e0e0e0;
}

/* line 987, app/assets/stylesheets/guides.scss */
.guides-status-list {
  margin: 24px 0;
}

/* line 991, app/assets/stylesheets/guides.scss */
.guides-status-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
}

/* line 998, app/assets/stylesheets/guides.scss */
.guides-status-item:last-child {
  border-bottom: none;
}

/* line 1003, app/assets/stylesheets/guides.scss */
.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  min-width: 100px;
  text-align: center;
}

/* line 1013, app/assets/stylesheets/guides.scss */
.status-badge.pending {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}

/* line 1018, app/assets/stylesheets/guides.scss */
.status-badge.assigned {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

/* line 1023, app/assets/stylesheets/guides.scss */
.status-badge.active {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
}

/* line 1028, app/assets/stylesheets/guides.scss */
.status-badge.processing {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

/* line 1033, app/assets/stylesheets/guides.scss */
.status-badge.completed {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

/* line 1040, app/assets/stylesheets/guides.scss */
.guides-feature-box {
  position: relative;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  background: #0a0a0a;
}

/* line 1049, app/assets/stylesheets/guides.scss */
.guides-feature-box .pattern-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
}

/* line 1059, app/assets/stylesheets/guides.scss */
.guides-feature-box .feature-box-content {
  position: relative;
  z-index: 1;
}

/* line 1064, app/assets/stylesheets/guides.scss */
.guides-feature-box h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

/* line 1072, app/assets/stylesheets/guides.scss */
.guides-feature-box > p {
  color: #888888;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* line 1079, app/assets/stylesheets/guides.scss */
.guides-feature-box .feature-box-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* line 1088, app/assets/stylesheets/guides.scss */
.guides-feature-box .feature-box-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #1a1a1a;
}

/* line 1097, app/assets/stylesheets/guides.scss */
.guides-feature-box .feature-box-item strong {
  color: #e0e0e0;
  font-size: 14px;
}

/* line 1102, app/assets/stylesheets/guides.scss */
.guides-feature-box .feature-box-item span {
  color: #666666;
  font-size: 13px;
}

/* line 1108, app/assets/stylesheets/guides.scss */
.guides-feature-box .feature-box-cta {
  margin: 0;
  position: relative;
  z-index: 1;
}

/* line 1116, app/assets/stylesheets/guides.scss */
.guides-next-steps {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #1a1a1a;
}

/* line 1121, app/assets/stylesheets/guides.scss */
.guides-next-steps h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  color: #e0e0e0;
}

/* line 1128, app/assets/stylesheets/guides.scss */
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

/* line 1134, app/assets/stylesheets/guides.scss */
.next-step-card {
  background: #111111;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  transition: border-color 0.15s;
}

/* line 1141, app/assets/stylesheets/guides.scss */
.next-step-card:hover {
  border-color: #48d597;
}

/* line 1145, app/assets/stylesheets/guides.scss */
.next-step-card h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #e0e0e0;
}

/* line 1151, app/assets/stylesheets/guides.scss */
.next-step-card p {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: #888888;
}

/* line 1157, app/assets/stylesheets/guides.scss */
.next-step-card .next-step-link {
  color: #48d597;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

/* line 1163, app/assets/stylesheets/guides.scss */
.next-step-card .next-step-link:hover {
  text-decoration: underline;
}

/* line 1169, app/assets/stylesheets/guides.scss */
.guide-screenshot-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  padding: 48px 24px;
  background-color: #111111;
  border: 2px dashed #2a2a2a;
  border-radius: 8px;
  text-align: center;
}

/* line 1180, app/assets/stylesheets/guides.scss */
.guide-screenshot-placeholder span {
  color: #666666;
  font-size: 13px;
  font-style: italic;
}
