/* Rotate the hero.png image 30 degrees to the right */
.banner__thumb img {
  transform: rotate(0deg);
}

/* Common sidebar styles for docs.html and mcpservers.html */

#contain_section { display: flex; flex-direction: row; align-items: flex-start; }
.docs-sidebar { flex: 0 0 240px; background: transparent; border-right: 1px solid #e0e0e0; padding: 24px 12px 24px 24px; overflow-y: auto; margin-bottom: 0; display: block; }
.main-content { flex: 1 1 0%; padding-left: 32px; min-width: 0; }
.category-list { list-style: none; margin: 0; padding: 0; }
.category-title { font-weight: bold; color: #fff; margin-bottom: 6px; display: block; padding: 6px 0; cursor: pointer; position: relative; padding-right: 24px; }
.category-title::after { content: '\25BC'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%) rotate(0deg); transition: transform 0.2s; }
.category-title.collapsed::after { transform: translateY(-50%) rotate(-90deg); }
.article-list { list-style: none; margin: 0 0 12px 0; padding-left: 16px; display: block; transition: max-height 0.2s, opacity 0.2s; overflow: hidden; max-height: 500px; opacity: 1; }
.article-list.collapsed { max-height: 0; opacity: 0; pointer-events: none; }
.article-list li { margin-bottom: 4px; }
.article-list a { color: #fff; text-decoration: none; font-size: 15px; }
.article-list a:hover { text-decoration: underline; }
@media (max-width: 991px) { .docs-sidebar { width: 100%; border-right: none; padding: 12px; margin-bottom: 24px; display: block; } }

#sidebar-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.sidebar {
  flex: 0 0 240px;
  background: transparent;
  border-right: 1px solid #e0e0e0;
  padding: 24px 12px 24px 24px;
  overflow-y: auto;
  margin-bottom: 0;
  display: block;
}
.sidebar-content {
  flex: 1 1 0%;
  padding-left: 32px;
  min-width: 0;
}
.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-category {
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
  display: block;
  padding: 6px 0;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
}
.sidebar-category::after {
  content: '\25BC';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s;
}
.sidebar-category.collapsed::after {
  transform: translateY(-50%) rotate(-90deg);
}
.sidebar-items {
  list-style: none;
  margin: 0 0 12px 0;
  padding-left: 16px;
  display: block;
  transition: max-height 0.2s, opacity 0.2s;
  overflow: hidden;
  max-height: 500px;
  opacity: 1;
}
.sidebar-items.collapsed {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.sidebar-items li {
  margin-bottom: 4px;
}
.sidebar-items a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}
.sidebar-items a:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .sidebar {
    width: 100%;
    border-right: none;
    padding: 12px;
    margin-bottom: 24px;
    display: block;
  }
}

.sidebar-content a {
    text-transform: none;
}

.sidebar-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border: 1px solid #fff;
}
.sidebar-content table th,
.sidebar-content table td {
  border: 1px solid #fff;
  color: #fff;
}

.sidebar-content ul{
    padding-left: 20px;
    margin: 0px;
    list-style: square;
}
.sidebar-content h5{
    padding-top: 10px;
}