html {
    height: 100%;
    width: 100%;
    background-color: #1d292c;
}
body {
    margin: 0;
    max-height: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #1d292c;
    font-family: Helvetica, arial, sans-serif;
    position: relative;
    width: 100%;

    -webkit-tap-highlight-color: transparent;
}

#application-canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#application-canvas.fill-mode-NONE {
    margin: auto;
}
#application-canvas.fill-mode-KEEP_ASPECT {
    width: 100%;
    height: auto;
    margin: 0;
}
#application-canvas.fill-mode-FILL_WINDOW {
    width: 100%;
    height: 100%;
    margin: 0;
}

canvas:focus {
    outline: none;
}



        
        #overlay {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: rgba(44,44,44, 0.5);
            color: white;
            z-index: 2;
            display: flex;
            
            align-items: center;
            justify-content: space-between; /* This separates left and right content */
            gap: 20px; /* Space between links */
        }
        
        .left-content, .right-content {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .lab-logo {
            height: 20px; /* Adjust based on your logo's aspect ratio */
            width: auto;
        }
        .overlay-link {
            color: white;
            text-decoration: none;
            font-family: Arial, sans-serif;
            font-size: 14px;
            padding: 8px 15px;
            /*border-radius: 4px;*/
            transition: background-color 0.3s;
        }
        
        .overlay-link:hover {
            background-color: #777777;
        }
        
        /* Style for the project link */
        .project-link {
            background-color: #505050; /* Green color */
        }
        
        /* Style for the credit link */
        .credit-link {
            background-color: #505050; /* Blue color */
        }
        


