/* custom.css */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body{
    font-family: "Roboto", sans-serif;
}
.rst-content .toctree-wrapper>p.caption, h1, h2, h3, h4, h5, h6, legend {
    font-family: "Montserrat", sans-serif;
    color: #ffb923;
}

body{
	background-color: white;
}
.wy-menu-vertical li button.toctree-expand {

    color: #ffb923;

}
.wy-nav-side {
	top:85px;
	background-color: #ffb923;
    padding-bottom: 50px;
}
.wy-nav-content {
	position: absolute;
	    width: -webkit-fill-available;
}

.navbar-menu {
    list-style: none;
    padding: 0;
    display: flex;
}

.navbar-menu li {
    margin-right: 85px; /* Adjust the spacing between menu items */
}

.navbar-menu a {
    text-decoration: none;
}
.wy-side-nav-search {
    background-color: #ffffff00;
}
.wy-side-nav-search input[type=text] {
    width: 96%;
    border-radius: 50px;
    padding: 14px 14px;
    /* border-color: #2472a4; */
    margin-right: 10px;
}
.wy-menu-vertical header, .wy-menu-vertical p.caption{
    font-family: "Jost", sans-serif;
    color: #fff;
    font-size: 16px;
}

.wy-menu-vertical a:active {
    /* background-color: #a1b0b1; */
    color: #fff;
}
.wy-menu-vertical a {
    color: #fff;
}
.wy-menu-vertical a:hover {
    /* background-color: #a1b0b1; */
    color: #fff;
}

.icon-logo {
	height: 60px;
	margin-right:50px;
	
}
.navbar-menu li {
    margin-right: 20px;
}
.menu{
	line-height: 56px;
}
.wy-nav-content {
    max-width: -webkit-fill-available;
} 
/* .caption-text{
color: #333;

} */
.wy-side-scroll {
        height: 100%;
    padding-bottom: 70px;
}
.image-reference img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
table{
  width: 75%;
}
.rst-content div.figure .caption-text, .rst-content figure .caption-text {
    margin-left: 40%;
}
header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      z-index: 100;
    }

    nav {
      display: flex;
      justify-content: space-between;
    }

    .logo img {
          height: 80px;
    margin-left: 100px;
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 15px;
    }

    .nav-links a {
      text-decoration: none;
      color: #000;
      font-size: 16px;
    }

    .cta-button {
    padding: 15px 30px;
    margin:15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2rem;
    gap: 0.5rem;
    background-color: #ffb923;
    color: #fff;
    transition: margin-right 0.2s ease-in-out;
    }

    a.cta-button:hover{
        color: #fff;
    }

    .dropdown {
      position: relative;
      padding: 25px 15px;
    }

    .dropdown-content {
      display: none;
    position: absolute;
    top: 100%;
    /* margin-top: 20px; */
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 10px;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown-content a {
      display: block;
      padding: 10px;
      text-decoration: none;
      color: #333;
    }

    .dropdown-content a:hover {
      background-color: #f5f5f5;
    }

    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
      }

      .nav-links.show {
        display: flex;
      }

    }
