body {
	margin: 0;
	padding: 0;
	background: var(--bg-color);
	color: var(--text-color);
	font-family: "Manrope", sans-serif;
	font-size: 12px;
	height: 100vh;
}



h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0px;
	padding: 0px;
}

h1{
	font-size: 18px;
	font-weight: 700;
}

.big_head{
	font-size: 24px;
	font-weight: 800;
	padding-bottom: 20px;
}

h4{
	font-weight: normal;
}

/* Padding top */
.pt4 {
	padding-top: 4px!important;
}

.pt6 {
	padding-top: 6px !important;
}

.pt8 {
	padding-top: 8px !important;
}

.pt12 {
	padding-top: 12px !important;
}

.pt16 {
	padding-top: 16px !important;
}

.pt22 {
	padding-top: 22px !important;
}


/* Padding bottom */
.pb4 {
	padding-bottom: 4px !important;
}

.pb6 {
	padding-bottom: 6px !important;
}

.pb8 {
	padding-bottom: 8px !important;
}

.pb12 {
	padding-bottom: 12px !important;
}

.pb16 {
	padding-bottom: 16px !important;
}

.pb22 {
	padding-bottom: 22px !important;
}


/* Margin Top */
.mt4{
	margin-top: 4px !important;
}


.mt6{
	margin-top: 6px !important;
}

.mt8{
	margin-top: 8px !important;
}

.mt12{
	margin-top: 12px !important;
}

.mt16{
	margin-top: 16px !important;
}

.mt22{
	margin-top: 22px !important;
}

/* Margin Bottom */
.mb4{
	margin-bottom: 4px !important;
}

.mb6{
	margin-bottom: 6px !important;
}

.mb8{
	margin-bottom: 8px !important;
}

.mb12{
	margin-bottom: 12px !important;
}

.mb16{
	margin-bottom: 16px !important;
}

.mb22{
	margin-bottom: 22px !important;
}


.custome_heading{
	padding: 25px 0px 8px 0px;
    font-size: 14px;
    color: var(--text-color) !important;
}

.hilight{
	background: var(--hilight_color);
	padding: 1px 2px;
	border-radius: 3px;
	border: 1px solid var(--border-color);
}

/* Border-radius */
.bor_radi {
	border-radius: 5px;
}

/* Colors */
.color_blue {
	color: var(--accent-color);
}

.color_string {
	background-color: var(--string-color);
}

.flx {
	display: flex;
	border-bottom: none;
	border-left: none;
	border-right: none;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
	text-decoration: none;
	color: inherit;
	/* optional: keep link color same as text */
}

.scroll-offset {
	scroll-margin-top: 100px;
	/* offset from top when scrolled to */
}


:root {
	--bg-color: #ffffff;
	--text-color: #0E0E0F;
	--placeholder-color: #B9C1D3;
	--accent-color: #3666b3;
	--border-color: #d7d6d6;
	--search-bg: #fafafa;
	--light-text-color: #4A5161;
	--item-hover: #d6e1f4;
	--text-hamburger: #0E0E0F;
	--mid-dark: #898787;
	--red-color: #b02727;
	--orange-color: #E29F4D;
	--post-bg: #FFF6EF;
	--post-border: #FFE2CC;
	--put-bg: #EDF4FF;
	--put-border: #BBD6FF;
	--put-text-color: #649AEC;
	--cancel-bg: #FFEFEF;
	--cancel-border: #fae0e0;
	--cancel-text-color: #E06C75;
	--string-color: #F0E9FF;
	--code-header:#06192B;
	--code-bg:#082035;
	--key-color:#DE934D;
	--string-value-color:#96DE62;
	--integer-value-color:#61AFEF;

	--string-bg:#F0E9FF;
	--string-border:#E4D8FE;
	--integer-bg:#DEECF7;
	--integer-border:#C3DFF5;
	--double-bg:#faf7e6;
	--double-border:#efe8be;
	--boolean-bg:#ffece8;
	--boolena-border:#edd3ce;
	--code-window-border:#3f4143; 
	--long-bg:#fce1e1;
	--long-border:#f6cdcd;
	--long-border:#f6cdcd;
	--comment_color:#858585;
	--hilight_color:#f1f1f1;

}

body.dark {
	--bg-color: #1e1e1e;
	--text-color: #f0f0f0;
	--placeholder-color: #7F8C9A;
	--accent-color: #497cce;
	--border-color: #333;
	--search-bg: #2a2a2a;
	--light-text-color: #6e788f;
	--item-hover: #353f51;
	--mid-dark: #898787;
	--red-color: #b02727;
	--orange-color: #E29F4D;
	--post-bg: #FFF6EF;
	--post-border: #FFE2CC;
	--put-bg: #EDF4FF;
	--put-border: #BBD6FF;
	--put-text-color: #649AEC;
	--cancel-bg: #FFEFEF;
	--cancel-border: #6e788f;
	--cancel-text-color: #E06C75;
	--string-color: #2a2a2a;
	--code-header:#3471d4;
	--code-bg:#2a2a2a; 
	--key-color:#DE934D;
	--string-value-color:#96DE62;
	--integer-value-color:#61AFEF;
	--string-bg:#F0E9FF;
	--string-border:#E4D8FE;
	--string-bg:#2a2a2a;
	--string-border:#333;
	--integer-bg:#2a2a2a;
	--integer-border:#333;
	--double-bg:#2a2a2a;
	--double-border:#333;
	--boolean-bg:#2a2a2a;
	--boolena-border:#2a2a2a;
	--code-window-border:#3f4143;
	--long-bg:#2a2a2a;
	--long-border:#333;
	--comment_color:#858585;
	--hilight_color:#515151;
	
}


/* Header */
.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid var(--border-color);
	background: var(--bg-color);
	position: fixed;
	top: 0;
	left: 0;
	right: 0px;
	z-index: 100;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.logo img {
	height: 28px;
}

.version {
	background: var(--search-bg);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2px 8px;
	font-size: 12px;
}

.nav-right nav ul {
	display: flex;
	align-items: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-right nav a {
	text-decoration: none;
	color: var(--light-text-color);
	font-size: 13px;
	font-weight: 500;
}

.nav-right nav a.active {
	color: var(--accent-color);
	border-bottom: 2px solid var(--accent-color);
	padding-bottom: 2px;
}

.top-arrow {
	width: 16px;
	height: 16px;
}

.theme-toggle {
	background: transparent;
	border: 1px solid var(--border-color);
	border-radius: 50%;
	width: 34px;
	height: 34px;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.theme-toggle img {
	width: 25px;
}

/* Common class */
.red_color {
	color: var(--red-color);
}


	.key_color{
		color: var(--key-color);
	}

	.string_color{
		color: var(--string-value-color);
	}

	.integer_color{
		color: var(--integer-value-color);
	}
.sm_data {
	padding: 24px 0px;
	border-bottom: 1px dashed var(--accent-color);
}


/* hamburger */
.hamburger {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
}

/* Search */
.search-input {
	width: 435px;
	max-width: 100%;
	padding: 8px 16px 8px 36px;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	background-color: var(--search-bg);
	background-image: url('../img/search.svg');
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 18px 18px;
	outline: none;
	color: var(--text-color);
}

.search-input::placeholder {
	color: var(--placeholder-color);
	opacity: 1;
}


/* Body content code start from here */
.container {
	width: 98%;
	margin: 0 auto;
	margin-top: 67px;
}


/* Left navigation div */
.left_nav {
	width: 24%;
	float: left;
	border-right: 1px solid var(--border-color);
	position: fixed;
}

/* right Navigation div */
.right_nav {
	width: 20%;
	float: right;
	position: fixed;
	right: 0px;
}

.nav_header{
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 10px;
	font-size: 13px;
}

/* Center div*/
.main_content {
	width: 55%;
	float: left;
	/* border-right: 1px solid var(--border-color); */
	margin-left: 25%;
}


.main_content_inside {
	width: 85%;
	margin: 0 auto;
}

.table_data {
	width: 100%;
}



.accordion {
	width: 96%;
	border-radius: 5px;
	margin-top: 0px;
	height: 89vh;
	overflow-x: hidden;
	overflow-y: scroll;
}

.accordion ul li {
	padding: 7px;
}

/* Left side sub menu code  */
.active_right_submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	width: max-content;
}

/* Submenu items */
.active_right_submenu li {
	padding: 10px 15px;
	cursor: pointer;
	position: relative;
	color: var(--text-color);
	transition: color 0.3s ease, padding-left 0.3s ease;
	/* smooth padding transition */
}

/* Blue vertical line - initially 0 height */
.active_right_submenu li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	/* start from top */
	height: 0;
	/* start from 0 */
	width: 2px;
	background: var(--accent-color);
	/* blue line */
	opacity: 0;
	transition: height 0.3s ease, opacity 0.3s ease;
}

/* Active submenu item */
.active_right_submenu li.active {
	color: var(--accent-color);
	font-weight: 600;
	padding-left: 10px;
	/* space for the line */
}

/* Animate the line */
.active_right_submenu li.active::before {
	opacity: 1;
	height: 50%;
	/* grow to 70% height */
	margin-top: 8px;
}

.item.active .title {
	background-color: var(--accent-color);
	color: var(--bg-color);
	border-radius: 3px;
}

.item {
	/* border: 1px solid var(--border-color); */
	margin: 10px 0px;
	border-radius: 5px;
	width: 96%;
}

.title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 5px;
	cursor: pointer;
	transition: background-color 0.3s;
	background-color: var(--search-bg);
	border: 1px solid var(--border-color);
	border-radius: 5px;
	font-weight: 12px;
	font-weight: 600;
}

.title:hover {
	background-color: var(--item-hover);
}

.arrow {
	transition: transform 0.3s;
}

.content {
	display: none;
	padding: 10px;
}

.api-btn {
	width: 100%;
	padding: 10px;
	margin-bottom: 5px;
	font-weight: bold;
	text-align: center;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s;
}

span.new {
	/* background: var(--border-color); */
	border: 1px solid var(--light-text-color);
	border-radius: 100px;
	padding: 2px 8px;
	font-size: 10px;
	color: var(--light-text-color);
	font-weight: 600;
	background-color: var(--bg-color);
}

/* Hamburger code start here */
.hamburger_menu {
	width: 100%;
	font-size: 12px;
	margin-top: 15px;
	margin-bottom: 30px;
}

.hamburger_menu img {
	width: 12px;
}

.hamburger_menu p {
	display: flex;
	align-items: center;
	color: var(--accent-color);
	font-weight: 600;
}

.main_content_inside h1 {
	color: var(--accent-color);
}

.doc_data p {
	padding: 5px 0px;
}

.hamburger_color {
	color: var(--mid-dark);
}

/* Responsive table code */
table {
	border-collapse: collapse;
	width: 100%;
}

th {
	text-align: left;
	padding: 5px 5px;
	background-color: var(--accent-color);
	color: var(--bg-color);
}

td {
	text-align: left;
	padding: 10px 5px;
}

.paramter_table td{
	text-align: left;
}

.txt-left {
	text-align: left;
}

table,
td,
th {
	border: 1px solid var(--border-color);
}

table tr td:last-child {
	text-align: left;
}

.right_nav_data {
	width: 100%;
	height: auto;
	overflow-x: hidden;
}

.right_nav_data h3 {
	padding: 8px 0px;
}


.right_nav_data ul {
	font-size: 11px;
}

.enum_bg {
	border: 1px solid var(--border-color);
	padding: 2px;
	border-radius: 3px;
	font-size: 10px;
	font-family: "Courier Prime", monospace;
	letter-spacing: 0.3px;
	background-color: var(--search-bg);
	font-weight: 400;
	padding: 2px 4px;
}

/* Scroll bar code */
.custom-scroll {
	overflow-y: auto;
	padding: 8px;
}

.custom-scroll::-webkit-scrollbar {
	width: 0px;
}

.custom-scroll::-webkit-scrollbar {
	width: 1px;
}

.custom-scroll {
	scrollbar-width: thin;
	scrollbar-color: var(--placeholder-color) var(--item-hover)
}


/* Table of content code  */
.table_content {
	width: 85%;
	margin: 0 auto;
	margin-top: 65px;
	border: 1px solid var(--border-color);
	border-radius: 3px;
	padding: 10px;
}

.table_heading {
	display: flex;
	align-items: center;
	justify-content: unset;
	;
}

.table_heading img {
	margin-right: 5px;
}

.table_heading_name {
	padding: 15px 0px 0px 0px;
}


.sidebar {
	padding: 10px 0px 10px 0px;
	width: 95%;
	height: 70vh;
}

.sidebar {
	padding: 10px 0px 10px 0px;
	width: 95%;
	height: 60vh;
}

ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.menu-item {
	padding: 10px 0px 10px 0px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--border-color);
	transition: all 0.3s;
}

.menu-item.active {
	border-left: 2px solid var(--accent-color);
	color: var(--accent-color);
	padding-left: 5px;
	font-weight: 600;
}

.arrow {
	width: 16px;
	height: 16px;

}


/* Copy URL Code Start */
.api-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 7px 5px;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	margin-top: 8px;
}

.api-endpoint {
	display: flex;
	align-items: stretch;
	background: var(--bg-color);
	border-radius: 6px;
	overflow: hidden;
	width: 100%;
}

.method {
	background: var(--post-bg);
	color: var(--bg-color);
	font-weight: 600;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	padding: 6px;
	border-radius: 5px;
	border: 1px solid var(--post-border);
	color: var(--orange-color);
}

.url {
	flex: 1;
	font-family: monospace;
	font-size: 13px;
	color: var(--light-text-color);
	padding: 0 8px;
	display: flex;
	align-items: center;
	border-right: 1px solid var(--border-color);
	word-break: break-all;
}

.copy-btn {
  border: none;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font-size: 12px;
  border-radius: 5px;
  min-width: 85px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.copy-btn:hover {
  background-color: var(--put-text-color);
  color: #fff;
}

.copy-btn img {
	width: 16px;
	height: 16px;
}

.copy-btn.copied {
	background: #198754;
	/* green for copied */
}

/* Copy URL Code End */


/* Libraries and SDKs code start here */

.libraries {
	width: 100%;
	margin-top: 6px;
}

.libraries p {
	padding: 2px;
	display: flex;
	gap: 3px;
	padding-top: 3px;
}

.libraries img {
	width: 16px;
}

.libraries strong {
	padding-bottom: 7px;
}

.python_lib {
	width: 28%;
	margin-right: 1%;
	float: left;
	background-color: var(--bg-color);
	border: 1px solid var(--border-color);
	padding: 10px 8px;
	border-radius: 5px;
	min-height: 60px;
}

.clearfix {
	clear: both;
}

/* Libraries and SDKs code end here */

/* Method color codes start here*/
.post_method {
	background-color: var(--post-bg);
	padding: 3px 5px;
	border: 1px solid var(--post-border);
	font-weight: 600;
	border-radius: 2px;
	font-size: 10px;
	width: 42px !important;
	display: inline-block;
	text-align: center;
	color: var(--orange-color);
}

.modify_method {
	background-color: var(--put-bg);
	border: 1px solid var(--put-border);
	color: var(--put-text-color);
}

.cancel_method {
	background-color: var(--cancel-bg);
	border: 1px solid var(--cancel-border);
	color: var(--cancel-text-color);
}

/* Method color codes end here*/

/* 6. Standard orders code start here */
.rate_limit {
	width: 100%;
}

.standard_key {
	border: 1px solid var(--border-color);
	padding: 10px;
}

.standard_key hr {
	background-color: var(--border-color);
	height: 0.5px;
	border: none;
}

.standard_key ul li img {
	width: 12px;
	padding-right: 2px;
}

.standard_key ul li {
	gap: 5px;
	padding: 4px 0px;
}

/* 6. Standard orders code end here */

/* Common tooltip code start here*/

/* Tooltip appearance */
.tooltip {
	position: absolute;
	display: none;
	padding: 3px 10px;
	background-color: var(--bg-color);
	border: 1px solid var(--border-color);
	color: var(--text-color);
	border-radius: 6px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	font-size: 12px;
	max-width: 260px;
	z-index: 1000;
	transform: translateY(-125%);
	margin-bottom: 12px;
	font-weight: 600;
}

/* Tooltip text styling */
.tooltip p {
	margin: 12px 0;
}

.tooltip strong {
	font-weight: 400;
	color: var(--light-text-color);
}

.tooltip-type {
	font-family: "Courier Prime", monospace;
	border: 1px solid var(--border-color);
	padding: 3px;
	border-radius: 3px;
	font-size: 10px;
	font-family: "Courier Prime", monospace;
	letter-spacing: 0.3px;
	font-weight: 400;
	padding: 4px 4px;
	background-color: var(--search-bg);
}

.tooltip-size {
	padding: 3px;
	border-radius: 3px;
	padding: 1px 4px;
}

span.tooltip-trigger {
    color: var(--text-color);
}

/* Table cell styling */
.flx {
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.color_blue {
	color: var(--accent-color);
}

/* Link icon */
.flx img {
    width: 14px;
    height: 14px;
    padding-top: 2px;
}
/* Common tooltip code end here*/



/* Code window start *---------------------------------------------------/

/* ---------- TABS ---------- */
.code_tabs {
  display: flex;
  gap: 8px;
}

.tab-btn {
  padding: 6px 14px;
  border: 1px solid var(--accent-color);
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  font-size: 13px;
  color: var(--accent-color);
  transition: 0.25s;
}

.tab-btn.active {
  background: var(--accent-color);
  color: #fff;
}

/* ---------- CODE WINDOW ---------- */
.code_window {
  background: #082035;
  border-radius: 4px;
  overflow: hidden;
  border: none;
}

.code-container {
  background: #082035;
  color: #e6edf3;
  overflow: hidden;

  /* SAME HEIGHT FOR ALL BLOCKS */
  max-height: 220px;      /* FIXED DEFAULT HEIGHT */
  transition: max-height 0.35s ease;

  padding: 18px;
}

/* when expanded */
.code-container.expanded {
  max-height: 2500px;
}

/* Code text */
pre {
  margin: 0;
  white-space: pre;
  font-family: monospace;
  font-size: 12px;
  line-height: 20px;
  overflow-x: auto;
}

/* ---------- SPAN COLORS ---------- */
.key_color { color: var(--key-color); }
.string_color { color: var(--string-value-color); }
.integer_color { color: var(--integer-value-color); }
.float_color { color: var(--bg-color); }


/* ---------- TOOLBAR ---------- */
.code-toolbar {
  background: #082035;
  border-top: 1px solid var(--code-window-border);
  padding: 12px 16px;
  display: flex;
  justify-content: flex-end;
}

.btn-group {
  display: flex;
  gap: 10px;
}

/* Copy btn */
.copy-btn {
  background: #1b4cb3;
  color: #fff;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: none;
}

.copy-btn:hover {
  background: var(--accent-color);
}

.copy-btn.copied {
  background: #0a7531;
}

/* Toggle btn */
.toggle-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;   /* Smooth border change */
}

.toggle-btn:hover {
  border-color: var(--put-text-color);
}



.copy-btn img,
.toggle-btn img {
  width: 15px;
}
/* Code window end *-----------------------------------------------------/





/* Right nav scroll-sync */
/* Right Navigation Styling */
/* Right Navigation Styling */
.right_nav {
  width: 20%;
  position: fixed;
  right: 0;
  top: 65px;
  bottom: 0;
  overflow-y: auto;
  padding: 10px;
  background: var(--bg-color);
  border-left: 1px solid var(--border-color);
  box-sizing: border-box;
}

.right_nav ul {
  list-style: none;
  padding: 0;
  margin-right: 10px;
  margin-top: 10px;
}

.right_nav li {
  padding: 8px 12px 8px 0px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border-color);
}

.right_nav li:last-child {
  border-bottom: none;
}

.right_nav li.active {
  font-weight: 600;
  color: #007bff;
  position: relative;
}

/* Normal links */
#rightNav ul li a {
  color: var(--text-color);
  text-decoration: none;
  display: block;
  padding: 4px 10px 4px 8px;
  border-left: 3px solid transparent;
  transition: border-left 0.3s ease, color 0.3s ease, transform 0.2s ease;
  line-height: 1.4;
}

/* Smooth animated blue line when active */
#rightNav ul li a.active {
  color: var(--accent-color);
  position: relative;
}

#rightNav ul li a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--accent-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

#rightNav ul li a {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0px 10px 0px 8px;
    transition: color 0.2s ease;
	cursor: pointer;
}

/* Blue line animation */
#rightNav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px; /* slightly thicker for visibility */
  height: 50%;
  background: var(--accent-color);
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  border-radius: 2px;
}

/* Active link — line expands smoothly */
#rightNav ul li a.active::before {
  transform: scaleY(1);
  opacity: 1;
}

/* Optional: smooth color fade for active text */
#rightNav ul li a.active {
  color: var(--accent-color);
}

/* Animate the blue line expanding smoothly */
#rightNav ul li a.active::before {
  transform: scaleY(1);
}

.right_nav_wraper {
  width: 85%;
  margin-left: 16px;
}

.obtain{
	width: 100%;
}

.xts_trimmed {
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 5px;
}

.xts_trimmed span{
	display: flex;
	align-items: center;
}

.xts_trimmed span{
	font-weight: 600;
	color: var(--accent-color);
}

/* Enum with numeric Constants code start  */
.enums_numeric .table_data h1 {
    padding: 25px 0px 8px 0px;
	font-size: 14px;
	color: var(--text-color);
}
/* Enum with numeric Constants code end  */

/* Data Types & Business Rules code start  */
.string_bg{
	background-color: var(--string-bg);
	border: 1px solid var(--string-border);
	color: var(--text-color);
}

.integer_bg{
	background-color: var(--integer-bg);
	border: 1px solid var(--integer-border);
	color: var(--text-color);
}

.double_bg{
	background-color: var(--double-bg);
	border: 1px solid var(--double-border);
	color: var(--text-color);
}

.long_bg{
	background-color: var(--long-bg);
	border: 1px solid var(--long-border);
	color: var(--text-color);
}

.comment_color{
	color: var(--comment_color);
}
.boolean_bg{
	background-color: var(--boolean-bg);
	border: 1px solid var(--boolena-border);
	color: var(--text-color);
}

.data_type_flx{
	display: flex;
	align-items: center;
}

.data_type_flx img{
	padding-top: 4px;
	padding-left: 2px;
	width: 16px;
}
/* Data Types & Business Rules code end  */

/* User 5.0 code start here */
.user_data{
	width: 100%;
}

.api-endpoint{
	min-height: 30px;
}
/* User 5.0 code end here */


.user_data .standard_key ul {
    gap: 5px;
    padding: 4px 0px 4px 0px;
    margin-left: 15px;
	list-style: circle;
}

.custom_lineheight{
	line-height: 12px;
}


/* FAQ's Section code start */
.accordion-container {
      width: 100%;
      margin: 0 auto;
	  font-family: "Manrope", sans-serif;
    }

    .accordion-item {
      border: 1px solid var(--border-color);
      border-radius: 4px;
      margin-bottom: 14px;
      overflow: hidden;
    }

    .accordion-header {
      width: 100%;
      color: var(--text-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 8px;
      cursor: pointer;
      border: none;
      outline: none;
      transition: background 0.3s ease;
	  background:none;
	  font-weight: 600;
	  font-size: 12px;
	  font-family: "Manrope", sans-serif;
    }

 
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      background: none;
      padding: 0 8px;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .accordion-content.show {
    padding: 12px 8px;
	}
    .icon {
      width: 16px;
      height: 16px;
    }

	.accordion-item.active {
    border: 1px solid var(--code-header);
}
	
/* FAQ's Section code end */
.right_target li:first-child {
 font-weight: 700;
 font-size: 12px;
}

a,
button,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"],
label,
select,
summary {
  cursor: pointer;
}


.flx-display {
    display: flex;
    align-items: center;
    gap: 5px;
}

.jpg_img{
	width: 100%;
	border-radius: 6px;
	border: 1px solid var(--border-color);
}

/* Basic alignment problem code */
.mx-w {
    min-width: 115px;
}

/* Make the text + icon sit side by side perfectly */
.tooltip-trigger {
  display: inline-flex;
  align-items: center;     /* vertically centers icon & text */
  justify-content: center; /* centers content if td is wide */
  gap: 4px;                /* space between text and icon */
  vertical-align: middle;
}

/* Adjust icon size */
.tooltip-trigger img {
  width: 14px;         /* removes unwanted bottom spacing */
}

/* Optional: make td alignment centered horizontally */
.flx {
  text-align: center;      /* centers text and icon in cell */
}

/* custom UL */
.custom_ul li{
	list-style: disc;
}

/* custom widget code start */
.custom-widget .txt-center{
	text-align: center;
}
.packet-wrapper {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    max-width: 1100px;
    margin: auto;
  }

  .packet {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }

  .packet-box {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
	background-color: var(--accent-color);
  }

  .packet-label {
    text-align: center;
    margin-top: 10px;
  }
  
  /* /// */
  .two-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.cust-packet{
    grid-template-columns: repeat(2, 1fr);
}

/* /// */
/* custom widget code end */
.section-title {
    text-align: center !important;
    font-weight: 600;
    padding: 14px 10;
	color: var(--accent-color);
  }


@media screen and (max-width: 1250px) {

body{
	font-size: 11px;
}

	.left_nav {
    width: 22%;
}

.main_content {
    width: 62%;
    margin-left: 20%;
}

.right_nav {
    width: 22%;
}

.right_nav_wraper {
    margin-left: 5px;
}

.right_nav {
    padding: 5px;
}

}


@media (max-width: 1100px) {
	.nav-center {
		display: none;
	}

	
	.nav-right nav ul {
		display: none;
		flex-direction: column;
		background: var(--bg-color);
		position: absolute;
		top: 60px;
		right: 10px;
		border: 1px solid var(--border-color);
		border-radius: 10px;
		padding: 10px;
	}

	.nav-right nav ul.show {
		display: flex;
	}

	.hamburger {
		display: block;
	}
}