.dekstop-content-slider {
  width: 100%;
  max-width: 100%;
}
.docs_sidebar_inner {
  height: 100%;
  width: 100%;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
}

.sidebar-item {
  font-size: 18px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-weight: 600;
}

.docs_sidebar_inner ul {
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
}

.docs_sidebar_inner ul li a {
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
  width: 260px;
  padding: 5px 20px;
  display: flex;
  justify-content: start;
  align-items: center;
}

.docs_sidebar_inner ul li a:hover {
  background-color: #ececec;
}

.docs_sidebar_inner .subitem_active {
  color: #061db7;
  font-weight: 600;
}

.sidebar-subitems {
  list-style: none;
  margin-bottom: 30px;
  margin-top: 15px;
}

.subitem {
  font-size: 16px;
  margin-bottom: 5px;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
}

.method_tag {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  background-color: #000;
  color: #fff;
  padding: 1px 6px;
  border-radius: 8px;
  margin-right: 8px;
  max-height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* CODE BLOCK CSS */
.dark-bg-codeblock {
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 20px;
}

.code-block {
  position: relative;
  padding: 1rem;
  border: 1px solid #555; /* Adjust border color as needed */
  border-radius: 5px;
  overflow: auto;
}

pre {
  margin: 0;
}

code {
  white-space: pre-wrap;
  font-family: monospace;
  color: inherit;
}

.copy-button {
  background: #061db7;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.copy-button i {
  margin-right: 0.5rem;
}
.copy-button:hover {
  background: #005d9e;
}
.copy-button.copied {
  background: #4caf50;
}

/* TABS */
.docs_main_tabs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: -30px;
  margin-bottom: 20px;
}
.docs_main_tabs .tab_item {
  width: 100%;
  text-align: center;
  cursor: pointer;
  padding: 8px 8px;
  transition: all 0.3s ease-in;
  border-bottom: 2px solid transparent;
  font-weight: 600;
  color: #000;
}
.docs_main_tabs .tab_item.activeTab {
  background-color: #155dee1a;
  border-bottom: 2px solid #061db7;
}

/* ========== DynamicCodeBlock CSS =========== */
.custom-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-tab {
  padding: 3px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  background-color: #f0f0f0;
  color: #333;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.custom-tab:hover {
  color: #007bff;
  border-color: #007bff;
}

.custom-tab.active {
  color: #000;
  border-color: #007bff;
  font-weight: 600;
}

/* DOC_MAIN_BODY */
.hyphen-list {
  list-style-type: none;
  padding: 0;
}

.hyphen-list li {
  margin-bottom: 10px;
}
.hyphen-list li::before {
  content: "--";
  margin-right: 0.5em;
}

.higlight_text {
  border: 1px solid #e3e2e2;
  border-radius: 8px;
  background-color: #f3f3f3;
  text-align: center;
  padding: 2px 5px 3px 5px;
  margin: 0px 8px;
  font-weight: 600;
  font-size: 16px;
  color: #555;
}

.helpful_text {
  margin-top: 60px;
}

.helpful_text .helpful_btn {
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid #d1d0d0;
  background-color: transparent;
}
.helpful_text .helpful_btn:hover {
  background-color: #ececec;
}

/* Chatbot API */
.chatbot_api_main {
  padding: 10px 10px 10px 10px;
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.api_method_tag {
  background-color: green;
  padding: 1px 12px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
}
.chatbot_api_main .input_wrapper {
  border: 1px solid rgb(211, 210, 210);
  border-radius: 8px;
  padding: 4px 20px;
}
.chatbot_api_main .url_input {
  border-radius: 8px;
  box-shadow: none;
  border: none;
  background-color: transparent;
  font-weight: 600;
}
.chatbot_api_main .copied_icon {
  height: 32px;
  width: 32px;
  cursor: pointer;
  object-fit: contain;
}
.chatbot_api_main .copy_icon {
  height: 32px;
  width: 32px;
  cursor: pointer;
  object-fit: contain;
}

.chatbot_api_dropdown {
  border: 1px solid rgb(211, 210, 210);
  border-radius: 8px;
  overflow: hidden;
}
.chatbot_api_dropdown .dropdown_inner {
  width: 100%;
  padding: 10px 20px;
  cursor: pointer;
  max-width: 100%;
  background-color: rgba(243, 244, 246, 0.5);
}
.chatbot_api_dropdown .dropdown_inner .dropdown_body {
  width: 100%;
  max-width: 100%;
}
