#canvascontainer:focus {
    outline: none; 
}

html, body {
    margin: 0; height: 100%; overflow: hidden;
    justify-content: center;
    background-color: #2e2e2e;
}

#queueInfo {
    display: none;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    font-size: 24px;
    border-radius: 10px;
    z-index: 9999; /* Ensure it is on top of canvas */
}

#companyLogo {
    display: none;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: auto;
    z-index: 9999; /* Ensure it is on top of canvas */
}

#canvasContainer {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    outline: none;
    /* background-color: rgb(89, 176, 216); */
  }

#canvasplayer {
    display: block;
    /* background-color: rgb(168, 71, 71); */
    background-color: rgb(0, 0, 0);
    margin: 20px auto 0 auto;
    position: center;
}

#canvasplayer:fullscreen,
#canvasContainer:fullscreen {
    width: 100%;
    height: 100%;
}

#topBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: rgb(36, 36, 36);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0px;
    font-size: 18px;
    z-index: 10000;
}

#toolbarButtonContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px; /* Set horizontal spacing between buttons */
    margin: 0; /* Ensure no margins around the container */
    padding: 0; /* Ensure zero padding in the container */
    margin-right: 10px; /* Add a margin to move away from the edge */
}

#fullscreenBtn {
    padding: 2px;
    font-size: 18px;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    margin-right: 10px;
}

#snapshotBtn {
    padding: 2px;
    font-size: 18px;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    margin-right: 10px;
}

#cursorBtn {
    padding: 2px;
    font-size: 18px;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    margin-right: 10px;
}

#sidebar {
    position: fixed;
    top: 20px;
    left: 0;
    height: 100%;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    box-sizing: border-box;
    display: none;
    z-index: 9999;
    overflow-y: auto;
    font-size: 14px;
}

#toggleSidebarBtn {
    padding: 2px;
    font-size: 18px;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    margin-right: 10px;
}

#container {
    margin: 0 auto;
    text-align: center;
    padding-left: 210px; /* Adjust padding to account for sidebar */
}

#container.sidebar-visible {
    padding-left: 10px;
}