/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    height: 100vh;
}

/* Header Section */
.header {
    width: 100%;
    text-align: center;
    background-color: #1e1e1e;
    padding: 20px 0;
    position: fixed;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.header h1 {
    margin: 0;
    color: white;
    font-size: 2em;
}

.header p {
    margin: 5px 0 0;
    color: #ff5722;
}

/* Sidebar */
.sidebar {
    width: 300px;
    background-color: #1e1e1e;
    padding: 80px 20px 20px;
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid #333;
}

.nav-item > a {
    color: #bbb;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 5px;
}

.nav-item > a:hover {
    color: #fff;
}

.square-indicator {
    width: 10px;
    height: 10px;
    background-color: #ff5722;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.child-items {
    display: none;
    padding-left: 30px;
    border-left: 1px solid #555;
    margin-top: 5px;
}

.expanded > .child-items {
    display: block;
}

.expanded > a .square-indicator {
    transform: rotate(45deg);
}

/* Content */
.content {
    flex: 1;
    padding: 100px 20px 20px;
    overflow-y: auto;
}

.hidden {
    display: none;
}


/* Global body styles */

  
  /* Header styles (retain the orange color) */
  h1, h2 {
    color: #ff5722;  /* Retained header color from the provided styles */
  }
  
  /* Paragraph and list item spacing */
  p, li {
    margin-bottom: 10px;
  }
  
  /* Code block styles */
  code {
    background-color: #1e1e1e; /* dark gray background */
    color: #ffffff;            /* white text */
    padding: 2px 4px;
    font-family: Consolas, Monaco, 'Courier New', monospace;
    font-size: 0.95em;
    border-radius: 3px;
  }
  
  pre {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 10px;
    overflow-x: auto;
    font-family: Consolas, Monaco, 'Courier New', monospace;
    font-size: 0.95em;
    border-radius: 5px;
    line-height: 1.5;
  }
  
  
  /* Unordered list styles */
  ul {
    margin-left: 20px;
  }
  
  /* Container layout */
  .container {
    max-width: 800px;
    margin: auto;
  }
  

  table {
    width: 70%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #1e1e1e;
    color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}
th, td {
    border: 1px solid #444;
    padding: 6px 10px; /* Reduced padding for a more compact look */
}
th {
    background-color: #ff5722;
    color: #121212;
    font-weight: bold;
    font-size: 14px; /* Smaller font size for header rows */
}
td {
    background-color: #2a2a2a;
    font-size: 14px;
}
.tableheader {
    background-color: #ffcc00;
    color: #121212;
}
table tr:nth-child(even) td {
    background-color: #252525;
}
table tr:hover td {
    background-color: #333;
}

.arrow {
  margin-right: 10px;
}

.green-box {
    background-color: green;
    color: white; /* Ensure text is visible against green background */
    padding: 3px; /* Add some space around the text */
    border-radius: 5px; /* Optional: Rounded corners */
  }

