.bodyclass {
  display: flex;
  margin: 0;
  height: 100vh;
  font-family: Arial, sans-serif;
  background: #dbd8e3;
}
.sidebar {
  
  width: 15%;
  height: 200%;
  background: #f4f4f4;
  background-color: #2a2438;
  padding: 10px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar h2 {
  margin-top: 0;
  color: #fff;
}

.sidebar li {

  background-color: #5c547017;
}
.nav-list {
  list-style: none;
  padding: 0;
}
.nav-list li {
  margin: 10px 0;
}
.nav-list a {
  text-decoration: wavy;
  color: #ffb411;
  font-size: 1.1rem;

}
.nav-list a:hover {
  background: #8e85b826;
  text-decoration: underline;
  padding: 0.6vh
}
.content-container {
  flex: 1;
  padding: 2vh;
}
.content {
  display: none;
}
.active {
  display: block;
}

.heading {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  background: #2a2438;
  padding: 3vh;
  border-radius: 2vh;
}

.subheading {
  position: relative;
  padding: 12px;
}
.homecontent {
  width: 96%;
  border: 2px solid rgba(31, 21, 9, 0);
  color: black;
  font-size: 27px;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding: 8vh;
  background: #dbd8e3;
}

.listclass {
  border: none;
  background: #9187aa69;
  padding: 6vh;
  border-radius: 4vh;
}
.listclass ul > li {
  font-size: 27px;
  list-style: disclosure-closed;
}

.contentBox {
  position: relative;
  top: 3vh;
  font-size: 24px;
  padding: 7vh;
  border: 2px solid rgba(216, 112, 147, 0.082);
  letter-spacing: 1px;
}

.Explain_Container {
  font-size: 27px;
  padding: 2.1vh;
  margin: 2vh;
}

/* ==========  Code Snippet CSS ========   */

.token.keyword {
  color: #c71fdf !important;
}

token.operator {
  color: #02312a !important;
}

token.punctuation {
  color: #02221f !important;
}

.example-box {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.example-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

pre {
  background-color: #f0f0f0;
  padding: 10px;
  border-left: 5px solid #2a2438;
  white-space: pre-wrap;
  word-wrap: break-word;
}

code {
  font-family: monospace;
  font-size: 14px;
  color: #0000cc;
}

/* =========  SQL Snippet Code End ========   */
.tableBox {
  /* border: 2px solid rebeccapurple; */
  display: flex;
  flex-direction: column;
  align-items: center;
}
table {
  width: 70%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 18px;
  text-align: left;
}
th,
td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}
th {
  background-color: #63487d;
  color: white;
  text-align: center;
}
tr:nth-child(even) {
  text-align: center;

  background-color: #f2f2f2;
}

#scroll-bar{
  height: 91%;
  width:16%;
  border:1px solid grey;
  font-family: 'GestaRegular', Arial, Helvetica, sans-serif;
  overflow: auto;
}

/* === Footer CSS From Index =======  */
.footerClass {
  border: 2px solid red;
  position: absolute;
  top: 10vh;
  display: flex;
  flex-direction: row;
}




/* // X-Small devices (portrait phones, less than 576px) */

@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}