body {
  font-family: 'Arial', sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
  color: #333;

}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  padding: 1rem;
}

a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}



.container {
  line-height: 1rem;
}

/****************************Top  Nav********************************/
.nav-container {
  background-color: #f8f9fa;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.topic {
  max-width: 1200px;
  margin: 0 auto;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.api-name .breadcrumb-title {
  font-size: 24px;
  color: #333;
}

.nav-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-bar ul li {
  margin-right: 20px;
}

.nav-bar ul li a {
  text-decoration: none;
  color: #e96e50;
  font-weight: bold;
}

.nav-bar ul li a:hover {
  color: #b34800;
}

/***********************************Side Nav**************************/




/******************************************************************/
.doc-container {
  display: grid;
  grid-gap: 32pt;
  max-width: 970px;
  margin: 0 auto;
  padding: 8pt;
  grid-template-columns: minmax(0, 1fr);
}


.doc-container>div:nth-child(2) {
  overflow-x: auto;
}


.documentation section {
  padding-top: 64pt;
  margin-top: -48pt;
  padding-bottom: 16pt;
}

.documentation .api code {
  border: none;
  padding: 0;
}

.documentation .response {
  border-radius: 4pt;
  margin-bottom: 16pt;
  font-family: monospace;
  width: 100%;
  word-wrap: break-word;
}

.documentation .api code {
  background-color: transparent;
  border: none;
  overflow-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  font-family: monospace;
  font-size: 100%;
  flex-basis: 85%;
}

.query_param {
  color: #EB6E4B;
}

.api .tools {
  flex-basis: 15%;
  align-items: center;
  max-width: 65px;
  display: flex;
  justify-content: flex-end;
}

button.tooltip-btn {
  position: relative;
  text-align: center;
  border: none;
  background-color: transparent;
  border-radius: 4pt;
  max-width: 24pt;
  padding: 2pt;
}

.tooltip-docs {
  display: none;
  position: absolute;
  left: 50%;
  top: -35px;
  margin-left: -24px;
  padding: 2pt;
  border-radius: 4pt;
  background-color: #fff;
  border: 1px solid #ececed;
  width: 48px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 14px;
  text-align: center;
}

.material-table td {
  vertical-align: top;
  font-weight: 300;
  border-top: 1px solid #F2F2F2;
}

.material-table th,
.material-table td {
  padding: 8pt 4pt;
  text-align: left;
}

.material-table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 24pt;
}

table {
  background-color: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.documentation img.copy-img {
  position: relative;
  width: 16pt;
  cursor: pointer;
}

.documentation code {
  font-family: monospace;
  padding: 2pt 4pt;
  border: 1px solid #D0D0D6;
  border-radius: 2pt;
  color: #48484A;
  white-space: unset;
  background-color: #FFF;
  font-size: 100%;
}
#content code{
  font-family: monospace;
padding: 2pt 4pt;
border: none;
border-radius: 0;
color: #48484A;
white-space: unset; /* or keep unset if that's your intention */
background-color: transparent;
font-size: 100%;

}
.documentation .sub {
  margin-left: 4pt;
  color: #8a8a8a;
  font-family: monospace;
  font-weight: normal;
}

.documentation .api {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8pt;
  margin-bottom: 16pt;
  background-color: #F2F2F2;
}

.documentation .sub-header {
  font-weight: bold;
  padding: 8pt;
  display: block;
  border-bottom: 1px solid #48484a;
}

button.tooltip-btn img {
  max-width: 100%;
}

img {
  vertical-align: middle;
}

img {
  border: 0;
}

.nowrap {
  white-space: nowrap !important;
}


@media screen and (min-width: 970px) {
  .doc-container {
    grid-template-columns: 2fr 1fr;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    padding: 0;
  }
}

/**********--------------------Upload Form--------------------------------*******/



/* Style for the upload section */
.upload-section {
  margin: 20px auto;
  max-width: 600px;
  font-family: Arial, sans-serif;
}

/* Form container styling */
.form-item {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Title styling */
.form-item h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

/* Form input fields and labels */
.form-item label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.form-item input[type="file"],
.form-item input[type="text"],
.form-item button {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 15px;
}

.form-item button {
  background-color: #4CAF50;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-item button:hover {
  background-color: #45a049;
}

/* Section for keys (hidden until triggered) */
#framework-keys,
#attribute-keys {
  margin-top: 15px;
}

#framework-key-list,
#attribute-key-list {
  padding-left: 20px;
  list-style: disc;
}

/******************************************************************/

footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  margin: 10px 0;
  color: #333;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.footer-links li {
  margin: 0 15px;
}

.footer-links a {
  text-decoration: none;
  color: #e96e50;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #b34800;
}

.footer-links svg {
  margin-left: 5px;
  fill: currentColor;
}