/*Top*/
body {
    margin: 0;
    padding: 0;
    font-family: Raleway, sans-serif;
    background-color: #191919;
    color: #e6e6e6;
  }

  #header {
    background-color: #333333;
    padding: 10px;
    text-align: center;
  }

  #container {
    position: relative;
    width: 100%;
    height: calc(100vh - 40px); /* Adjusted for header height */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  canvas {
    width: 100%;
    height: 100%;
    background-color: #d9d9d9; /* Changed canvas color */
  }

  #meshName {
    position: absolute;
    top: 5%;
    left: 1%;
    font-size: 20px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
  }

  #roundedButton {
    position: absolute;
    top: 1%; 
    left: 1%;
    width: 30px; 
    height: 30px;
    color: gray; 
    border: none;
    background-color: transparent;
    display: flex; 
    justify-content: center;
    cursor: pointer;
    font-size: 100%; 
    z-index: 1000;
  }

  #roundedButton:hover{
    color: white; 
  };