

body {
  font-family: Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

main {
  flex: 1;
  width: 100%;
  overflow-x: hidden;
}

.content-wrapper {
  margin-left: 20px;
  margin-right: 20px;
}
.content-wrapper2 {
  margin-left: 10px;
  margin-right: 20px;
}

.image {
    width: 35%; /* Sets the width of the images to 100% of their container */
    height: auto; /* Maintains the aspect ratio of the images */
    padding: 10px; /* Adds space around the images */
    display: block; /* Makes each image block level to ensure it takes its own line */
    margin: 0; /* Centers the images within their container */
}
.xp-image {
    width: 90%; /* Sets the width of the images to 100% of their container */
    height: auto; /* Maintains the aspect ratio of the images */
    padding: 10px; /* Adds space around the images */
    display: block; /* Makes each image block level to ensure it takes its own line */
    margin: 0; /* Centers the images within their container */
}


header {
  background-color: #fff;
  padding: 5px;
  border-bottom: 0.5px solid #f0f0f0;
  width: 100%;
  margin: 0;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  width: 100%;
  margin: 0 auto;
}

.logo {
  width: 50%;
  padding-left: 20px;
  display: flex;
  align-items: center;
}

nav ul {
  width: 50%;
  list-style-type: none;
  margin: 0;
  padding-right: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

nav ul li {
  display: flex;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

nav ul li.get-started a {
  padding: 8px 16px;
}
.logo img {
  max-width: 50px;
  height: auto;
}

nav ul li.get-started a {
  background-color: #000066;
  color: #fff;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

nav ul li.get-started a:hover {
  background-color: #000080;
}







/* ACCORDION functionality */
code {
  background-color: #f4f4f4;
  padding: 2px 4px;
  border-radius: 4px;
  font-family: Consolas, monospace;
}
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 5px;
    width: 50%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.6s ease-out;
}
.accordion:hover,
.accordion.active {
    background-color: #ccc;
}
.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}
.panel.show {
    display: block;
}
.panel ul, .panel h3 {
    font-size: 12px; /* Smaller font size for content inside panel */
}
/* No bullets list styling */
ul {
  list-style-type: none;
  padding: 0;
}
ul ul {
  margin-left: 20px;
}
ul ul li {
  list-style-type: disc;
}
/* subnav styling*/
#docs-nav a {
  color: black;
}

/* fix list items*/
.no-blue a {
    color: black;
}


/* NEW STYLING!!! */

#live-endpoints li { font-size: 12px; line-height: 1.2; }
#live-endpoints code { padding: 1px 3px; border-radius: 2; }


/* border radius use to be 4 */



::selection {
  background-color: #000000; /* terminal green */
  color: #00FF00;
}







/* FOOTER */
.footer {
    background-color: black;
    color: white;
    padding: 30px 25px 30px; /* top, right/left, bottom */
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
}
.footer-column {
    /* flex: 1;  removed to left align*/
    min-width: 200px;
    padding: 0 10px;
    margin-bottom: 20px;
}
.footer-column h3 {
    margin-bottom: 0px; /* title to list spacing*/
    font-size: 14px; /* title font size */
    font-weight: bold; /* normal rm bold, font-weight: 500;Semi-bold */
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 5px; /* list item spacing*/
    font-size: 14px; /* list item font size */
}
.footer-column ul li a {
    color: white;
    text-decoration: none;
}
.footer-column ul li a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer-column {
        min-width: 150px;
    }
}




/* Second Row Container */
.footer-row-second {
    width: 100%;
    margin-top: 0px;
    padding-top: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Second Row Columns */
.footer-row-second .footer-column {
    min-width: 200px;
    padding: 0 10px;
}