body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .sidebar {
    height: 100%;
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-top: 20px;
  }
  
  .sidebar a {
    padding-left: 5px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 5px;

    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
  }
  
  .sidebar a:hover {
    background-color: #575757;
  }
  
  .content {
    margin-left: 200px; /* Same as the width of the sidebar */
    padding: 20px;
  }

.menuitemtext {
    font-size: 16px;
    color: white;
    margin-left: 5px;
    margin-top: 5px; 
    text-decoration: none;
  }
  
.menuitem {
  height: 30px; display: flex;
}


.menuitemicon {
  height: 30px; width: 30px;
}


  #width-toggle-button {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 0; /* Default: Left-pointing triangle */
    border-color: transparent yellow transparent transparent;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    transform: rotate(135deg); /* Default direction */
    transition: transform 0.3s ease; /* Smooth rotation for triangle */
}
  
  #content-frame {
    border: none; /* Removes the border around the iframe */
    width: 100%; /* Adjusts the width of the iframe */
    height: 600px; /* Adjusts the height of the iframe */
  }