.api-docs-design-1 {
  color: white;
  min-height: 100vh;
}
.api-docs-design-1 .api-hero-section {
  padding: 80px 0 60px;
  text-align: center;
}
.api-docs-design-1 .api-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .api-docs-design-1 .api-container {
    padding: 0 20px;
  }
}
.api-docs-design-1 .section-header {
  margin-bottom: 50px;
}
.api-docs-design-1 .section-header.center {
  text-align: center;
}
.api-docs-design-1 .section-header.white-text {
  color: white;
}
.api-docs-design-1 .section-header.white-text h1, .api-docs-design-1 .section-header.white-text h2 {
  color: white;
}
.api-docs-design-1 .section-header.white-text .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.api-docs-design-1 .section-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .api-docs-design-1 .section-header h1 {
    font-size: 2.5rem;
  }
}
.api-docs-design-1 .section-header .section-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .api-docs-design-1 .section-header .section-subtitle {
    font-size: 1.1rem;
  }
}
.api-docs-design-1 .api-version-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.api-docs-design-1 .api-version-badge .badge-label {
  background: white;
  color: #667eea;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
}
.api-docs-design-1 .api-search-wrapper {
  max-width: 650px;
  margin: 0 auto 50px;
}
.api-docs-design-1 .search-box-modern {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 5px 20px 5px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}
.api-docs-design-1 .search-box-modern .material-icons {
  color: #667eea;
  font-size: 28px;
  margin-right: 15px;
  flex-shrink: 0;
}
.api-docs-design-1 .search-input-api {
  flex: 1;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  outline: none;
  background: transparent;
  color: #333;
  min-width: 0;
}
.api-docs-design-1 .search-input-api::placeholder {
  color: #999;
}
.api-docs-design-1 .api-categories-modern {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}
.api-docs-design-1 .category-pill-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(10px);
  text-decoration: none;
}
.api-docs-design-1 .category-pill-modern:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.api-docs-design-1 .category-pill-modern.active {
  background: white;
  color: #667eea;
  border-color: white;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}
.api-docs-design-1 .category-pill-modern .material-icons {
  font-size: 20px;
}
.api-docs-design-1 .api-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .api-docs-design-1 .api-grid-modern {
    grid-template-columns: 1fr;
  }
}
.api-docs-design-1 .api-card-modern {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.api-docs-design-1 .api-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.api-docs-design-1 .api-card-header {
  padding: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.api-docs-design-1 .api-card-method {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.api-docs-design-1 .api-card-method .material-icons {
  font-size: 16px;
}
.api-docs-design-1 .api-card-method.method-get {
  background: rgba(76, 217, 100, 0.3);
  color: #fff;
}
.api-docs-design-1 .api-card-method.method-post {
  background: rgba(255, 107, 107, 0.3);
  color: #fff;
}
.api-docs-design-1 .api-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 10px 0;
  line-height: 1.3;
}
.api-docs-design-1 .api-card-endpoint {
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 12px;
  border-radius: 8px;
  overflow-x: auto;
  white-space: nowrap;
}
.api-docs-design-1 .api-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.api-docs-design-1 .api-card-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.api-docs-design-1 .api-card-features {
  margin-bottom: 20px;
}
.api-docs-design-1 .api-card-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.api-docs-design-1 .api-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
}
.api-docs-design-1 .api-card-features li .material-icons {
  color: #667eea;
  font-size: 20px;
}
.api-docs-design-1 .api-card-footer {
  padding-top: 15px;
  border-top: 2px solid #f0f0f0;
}
.api-docs-design-1 .btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.api-docs-design-1 .btn-read-more:hover {
  gap: 12px;
  color: #764ba2;
}
.api-docs-design-1 .btn-read-more .material-icons {
  font-size: 20px;
}
.api-docs-design-1 .api-version-switch {
  background: white;
  border-radius: 24px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.api-docs-design-1 .api-version-switch:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.api-docs-design-1 .api-version-switch h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
}
.api-docs-design-1 .api-version-switch h2 .api-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.api-docs-design-1 .api-version-switch p {
  color: #666;
  line-height: 1.7;
  margin: 0 0 24px;
  font-size: 1.1rem;
}
.api-docs-design-1 .api-version-switch .api-switch-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
.api-docs-design-1 .api-version-switch .api-switch-btn .material-icons {
  font-size: 20px;
}
.api-docs-design-1 .api-version-switch .api-switch-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.5);
}
.api-docs-design-1 .codeExample {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.api-docs-design-1 .codeExample .code {
  margin-bottom: 40px;
}
.api-docs-design-1 .codeExample .code:last-child {
  margin-bottom: 0;
}
.api-docs-design-1 .codeExample .code-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  flex-wrap: wrap;
}
.api-docs-design-1 .codeExample .code-section-title .material-icons {
  color: #667eea;
  font-size: 24px;
}
.api-docs-design-1 .codeExample .code-section-title .method-badge {
  margin-left: auto;
}
.api-docs-design-1 .codeExample .code-section-title .endpoint-url {
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.9rem;
  font-weight: 500;
  color: #667eea;
  background: rgba(102, 126, 234, 0.05);
  padding: 6px 12px;
  border-radius: 6px;
  border-left: 2px solid rgba(102, 126, 234, 0.3);
  flex: 1;
  min-width: 200px;
  overflow-x: auto;
  white-space: nowrap;
}
.api-docs-design-1 .codeExample .lbl-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  margin: 20px 0 10px 0;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  display: inline-block;
}
.api-docs-design-1 .codeExample .lblCredits {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 126, 234, 0.04);
  border-left: 2px solid rgba(102, 126, 234, 0.25);
  color: #888;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.api-docs-design-1 .codeExample .lblCredits .material-icons {
  font-size: 14px;
  opacity: 0.5;
  color: #999;
}
.api-docs-design-1 .codeExample .lblCredits:hover {
  background: rgba(102, 126, 234, 0.06);
  border-left-color: rgba(102, 126, 234, 0.4);
  color: #667eea;
}
.api-docs-design-1 .codeExample .lblCredits:hover .material-icons {
  opacity: 0.8;
}
.api-docs-design-1 .codeExample .lblCredits.info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border: 1px solid rgba(102, 126, 234, 0.2);
  color: #333;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
}
.api-docs-design-1 .codeExample .lblCredits.info-box .material-icons {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.api-docs-design-1 .codeExample .lblCredits.info-box strong {
  color: #667eea;
  font-weight: 700;
}
.api-docs-design-1 .codeExample .lblCredits.info-box:hover {
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}
.api-docs-design-1 .codeExample .credits-badge-link {
  text-decoration: none;
}
.api-docs-design-1 .codeExample pre {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  overflow-x: auto;
  margin: 15px 0;
  font-size: 0.9rem;
}
.api-docs-design-1 .codeExample pre code {
  background: none;
  padding: 0;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
}
.api-docs-design-1 .codeExample pre.post-example {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 4px solid #667eea;
}
.api-docs-design-1 .codeExample .api-params-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}
.api-docs-design-1 .codeExample .api-params-table thead {
  background: white;
  border-bottom: 2px solid #e0e0e0;
}
.api-docs-design-1 .codeExample .api-params-table thead th {
  padding: 12px 15px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
}
.api-docs-design-1 .codeExample .api-params-table thead tr:hover {
  background: none !important;
}
.api-docs-design-1 .codeExample .api-params-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}
.api-docs-design-1 .codeExample .api-params-table tbody tr:hover {
  background: #f8f9fa;
}
.api-docs-design-1 .codeExample .api-params-table tbody tr:last-child {
  border-bottom: none;
}
.api-docs-design-1 .codeExample .api-params-table tbody td {
  padding: 15px;
  color: #555;
  vertical-align: top;
}
.api-docs-design-1 .codeExample .api-params-table tbody td.key {
  font-weight: 600;
  color: #667eea;
  width: 25%;
}
.api-docs-design-1 .codeExample .api-params-table tbody td.key code {
  background: rgba(102, 126, 234, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  color: #667eea;
  font-size: 0.85rem;
  font-weight: 600;
}
.api-docs-design-1 .codeExample .api-params-table tbody td.type {
  width: 15%;
  color: #555;
  font-weight: 600;
}
.api-docs-design-1 .codeExample .api-params-table tbody td.required {
  width: 15%;
  color: #555;
  font-weight: 600;
}
.api-docs-design-1 .codeExample .api-params-table tbody td.description {
  width: 45%;
}
.api-docs-design-1 .codeExample .type-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #f0f0f0;
  color: #555;
  text-transform: lowercase;
}
.api-docs-design-1 .codeExample .required-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
.api-docs-design-1 .codeExample .required-badge.required-yes {
  background: #ffebee;
  color: #c62828;
}
.api-docs-design-1 .codeExample .required-badge.required-no {
  background: #e8f5e9;
  color: #2e7d32;
}
.api-docs-design-1 .codeExample .url-line {
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.9rem;
  color: #667eea;
  font-weight: 600;
  background: rgba(102, 126, 234, 0.05);
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid #667eea;
  overflow-x: auto;
  white-space: nowrap;
}
.api-docs-design-1 .codeExample .header-line {
  font-size: 0.85rem;
  padding: 4px 0;
}
.api-docs-design-1 .codeExample .header-line .header-key {
  font-weight: 600;
  color: #555;
}
.api-docs-design-1 .codeExample .line {
  margin: 4px 0;
}
@media (max-width: 768px) {
  .api-docs-design-1 .codeExample {
    padding: 20px 15px;
  }
  .api-docs-design-1 .codeExample .code-section-title {
    font-size: 1.1rem;
    flex-wrap: wrap;
  }
  .api-docs-design-1 .codeExample .api-params-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.85rem;
  }
  .api-docs-design-1 .codeExample .api-params-table thead th,
  .api-docs-design-1 .codeExample .api-params-table tbody td {
    padding: 10px 12px;
    white-space: nowrap;
  }
}
.api-docs-design-1 .api-footer-note {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.api-docs-design-1 .api-footer-note a {
  color: white;
  text-decoration: underline;
}
.api-docs-design-1 .api-footer-note a:hover {
  opacity: 0.8;
}
.api-docs-design-1 .openapi-section h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
}
.api-docs-design-1 .openapi-section p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.api-docs-design-1 .openapi-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
.api-docs-design-1 .openapi-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.5);
}
.api-docs-design-1 .openapi-btn.secondary {
  background: white;
  color: #667eea !important;
  border: 2px solid #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.api-docs-design-1 .openapi-btn.secondary:hover {
  background: #667eea;
  color: white !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
}
.api-docs-design-1 .api-single-view-content {
  background: white;
  border-radius: 24px;
  padding: 50px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .api-docs-design-1 .api-single-view-content {
    padding: 30px 20px;
    border-radius: 16px;
  }
}
.api-docs-design-1 .api-endpoint-detail {
  background: white;
  border-radius: 24px;
  padding: 50px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.api-docs-design-1 .api-endpoint-detail:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.api-docs-design-1 .api-endpoint-detail h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 30px 0;
  padding-bottom: 20px;
  border-bottom: 3px solid #667eea;
}
.api-docs-design-1 .api-endpoint-detail h2.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.api-docs-design-1 .api-endpoint-detail h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #444;
  margin: 30px 0 15px 0;
}
.api-docs-design-1 .api-endpoint-detail h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #555;
  margin: 25px 0 12px 0;
}
.api-docs-design-1 .api-endpoint-detail p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}
.api-docs-design-1 .api-endpoint-detail a {
  color: #7986cb;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.api-docs-design-1 .api-endpoint-detail a:hover {
  color: #667eea;
  text-decoration: underline;
}
.api-docs-design-1 .api-endpoint-detail a .material-icons {
  font-size: 16px;
  vertical-align: middle;
  opacity: 0.7;
}
.api-docs-design-1 .api-endpoint-detail ul, .api-docs-design-1 .api-endpoint-detail ol {
  margin: 15px 0;
  padding-left: 30px;
  color: #666;
  line-height: 1.7;
}
.api-docs-design-1 .api-endpoint-detail ul li, .api-docs-design-1 .api-endpoint-detail ol li {
  margin-bottom: 8px;
}
.api-docs-design-1 .api-endpoint-detail code {
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.9em;
  color: #d63384;
}
.api-docs-design-1 .api-endpoint-detail pre {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  overflow-x: auto;
  margin: 20px 0;
}
.api-docs-design-1 .api-endpoint-detail pre code {
  background: none;
  padding: 0;
  color: #333;
  font-size: 0.95em;
}
.api-docs-design-1 .api-endpoint-detail table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.api-docs-design-1 .api-endpoint-detail table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.api-docs-design-1 .api-endpoint-detail table thead th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}
.api-docs-design-1 .api-endpoint-detail table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}
.api-docs-design-1 .api-endpoint-detail table tbody tr:hover {
  background: #f8f9fa;
}
.api-docs-design-1 .api-endpoint-detail table tbody tr:last-child {
  border-bottom: none;
}
.api-docs-design-1 .api-endpoint-detail table tbody td {
  padding: 15px;
  color: #555;
  font-size: 0.95rem;
}
.api-docs-design-1 .api-endpoint-detail table tbody td:first-child {
  font-weight: 600;
  color: #667eea;
}
@media (max-width: 768px) {
  .api-docs-design-1 .api-endpoint-detail {
    padding: 30px 20px;
    border-radius: 16px;
  }
  .api-docs-design-1 .api-endpoint-detail h2 {
    font-size: 1.5rem;
  }
  .api-docs-design-1 .api-endpoint-detail h3 {
    font-size: 1.3rem;
  }
  .api-docs-design-1 .api-endpoint-detail table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.api-docs-design-1 .method-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.api-docs-design-1 .method-badge.method-get {
  background: rgba(76, 217, 100, 0.2);
  color: #4cd964;
  border: 1px solid rgba(76, 217, 100, 0.4);
}
.api-docs-design-1 .method-badge.method-post {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  border: 1px solid rgba(102, 126, 234, 0.4);
}
.api-docs-design-1 html {
  scroll-behavior: smooth;
}
.api-docs-design-1 .example-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 15px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}
.api-docs-design-1 .example-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.api-docs-design-1 .example-tab .material-icons {
  font-size: 16px;
}
.api-docs-design-1 .example-tab:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}
.api-docs-design-1 .example-tab.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
@media (max-width: 768px) {
  .api-docs-design-1 .example-tab {
    font-size: 0.85rem;
    padding: 8px 16px;
    flex: 1 1 auto;
    justify-content: center;
  }
}
.api-docs-design-1 .example-contents {
  position: relative;
}
.api-docs-design-1 .example-content {
  display: none;
}
.api-docs-design-1 .example-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.api-docs-design-1 .example-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 768px) {
  .api-docs-design-1 .example-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.api-docs-design-1 .example-description {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-weight: 600;
  font-size: 1rem;
  flex: 1;
}
.api-docs-design-1 .example-description .material-icons {
  color: #667eea;
  font-size: 20px;
}
.api-docs-design-1 .codepen-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  white-space: nowrap;
}
.api-docs-design-1 .codepen-btn .material-icons {
  font-size: 18px;
}
.api-docs-design-1 .codepen-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
@media (max-width: 768px) {
  .api-docs-design-1 .codepen-btn {
    width: 100%;
    justify-content: center;
  }
}
.api-docs-design-1 .example-content pre {
  margin: 0;
  border-radius: 0 0 12px 12px;
}
.api-docs-design-1 .codepen-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.api-docs-design-1 .codepen-link a .material-icons {
  font-size: 18px;
}
.api-docs-design-1 .codepen-link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
.api-docs-design-1 .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.api-docs-design-1 .back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.api-docs-design-1 .back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}
.api-docs-design-1 .back-to-top .material-icons {
  font-size: 24px;
}

/*# sourceMappingURL=api-docs-design-option-1.css.map */
