@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: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666666;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 479, 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 489, app/assets/stylesheets/guides.scss */
.guides-button:hover {
  background-color: #5ae0a5;
  color: #000;
}

/* line 495, 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 503, app/assets/stylesheets/guides.scss */
.guides-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 514, 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 524, app/assets/stylesheets/guides.scss */
.guides-toc::-webkit-scrollbar {
  width: 4px;
}

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

/* line 534, 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 543, app/assets/stylesheets/guides.scss */
.guides-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 549, 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 558, app/assets/stylesheets/guides.scss */
.guides-toc-link:hover {
  color: #e0e0e0;
}

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

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

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

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

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

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

/* line 623, 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 630, 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 637, app/assets/stylesheets/guides.scss */
.api-section-card:hover {
  border-color: #48d597;
}

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

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

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

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

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

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

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

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

/* line 689, 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 698, app/assets/stylesheets/guides.scss */
.api-endpoint .api-summary {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 16px;
}

/* line 704, 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 715, 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 724, app/assets/stylesheets/guides.scss */
.api-method.method-get {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

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

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

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

/* line 747, 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 758, app/assets/stylesheets/guides.scss */
code.method-get {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

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

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

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

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

/* line 788, 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 796, app/assets/stylesheets/guides.scss */
.api-badge.deprecated {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

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

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

/* line 814, 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 825, app/assets/stylesheets/guides.scss */
.api-params-table td {
  padding: 10px 12px;
  border: 1px solid #1a1a1a;
  vertical-align: top;
}

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

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

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

/* line 851, 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 859, app/assets/stylesheets/guides.scss */
.api-response-code.code-2xx {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

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

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

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

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

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

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

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

/* line 908, 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 917, app/assets/stylesheets/guides.scss */
.guides-table td {
  padding: 12px 16px;
  border: 1px solid #1a1a1a;
  vertical-align: top;
  color: #888888;
}

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

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

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

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

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

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

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

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

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

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

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

/* line 982, 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 992, app/assets/stylesheets/guides.scss */
.status-badge.pending {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}

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

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

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

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

/* line 1019, 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 1028, 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 1038, app/assets/stylesheets/guides.scss */
.guides-feature-box .feature-box-content {
  position: relative;
  z-index: 1;
}

/* line 1043, 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 1051, app/assets/stylesheets/guides.scss */
.guides-feature-box > p {
  color: #888888;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* line 1058, 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 1067, 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 1076, app/assets/stylesheets/guides.scss */
.guides-feature-box .feature-box-item strong {
  color: #e0e0e0;
  font-size: 14px;
}

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

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

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

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

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

/* line 1113, 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 1120, app/assets/stylesheets/guides.scss */
.next-step-card:hover {
  border-color: #48d597;
}

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

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

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

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