     
/* styles.css */

@font-face {
    font-family: 'Roboto Lt';
    src: url(/fonts/Roboto-Light.woff2) format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: black;
    font-family: 'Roboto Lt';
    font-size: 14px;
}

body.custom-font-loaded {
    font-family: 'Roboto Lt';
}

.container {
    position: absolute;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    }

.top-menu {
    height: 50px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap ;
    background: rgb(200, 173, 128);   
    /* background-image: url('/image/tile.png'); 
    background-repeat: repeat; */
     color: rgb(20, 20, 20);
     position: fixed;
     width: 100%; /* Adjust width */
     z-index: 1000; /* Ensure it's on top */
     padding-left: 13px;
}

.left-links, .header-text {
    display: flex;
    align-items: center;
}

.header-text {
    align-items: center;
    display: flex;
    width: 100vw;
    justify-content: flex-end;
    text-align: right;
    margin-right: 30px;
    margin-bottom: 2px;
}

.top-menu .left-links a {
    display: flex; /* Align icon and text horizontally */
    align-items: center; /* Vertically center icon and text */
    text-decoration: none; /* Remove underline */
    color: rgb(20, 20, 20); /* Text color */
    padding: 6px; /* Padding for links */
    transition: color 0.6s ease; /* Smooth color transition */
    margin-bottom: 3px;
    margin-right: 7px;
}

.top-menu .left-links a img {
    width: 30px; /* Set icon width */
    height: 25px; /* Set icon height */
    margin-right: 8px; /* Space between icon and text */
    filter: brightness(1.5);
}

.left-links a:hover {
    background-color: #557755;
    color: white;
    border-radius: 4px;
}

.left-links .thispage {
    color: rgb(60, 60, 60);
}

.header-text {
    position: relative;
    height:50px;
    visibility: hidden;
}

.header-text object {
    position: absolute;
    top: 10%;
    transform: translateX(50%);
}

.vertical-menu {
    width: 155px; /* Menu width */
    background: rgb(162, 124, 87);  
    /* background-image: url('/image/sidebar.png'); */
    height: 100vh;
    position: fixed; /* Fixed positioning */
    top: 0; /* Positioned 63px from the top */
    display: flex; /* Flexible layout */
    flex-direction: column; /* Vertical alignment */
    justify-content: flex-start; /* Align items to the top */
    padding: 20px 15px; /* Padding inside the menu */
    padding-top: 60px;
    z-index: 1;
}

.vertical-menu a {
    display: block; /* Ensure the buttons take up block space */
    width: calc(100% - 10px);
    color: rgb(40, 30, 2); /* black text for contrast */
    text-decoration: none; /* Remove underline */
    padding: 6px 0; /* Padding for click area */
    border-radius: 5px; /* Rounded corners */
    background-color: rgb(191, 128, 20); /* Button background color */
    text-align: center; /* Center text inside the button */
    box-sizing: border-box; /* Include padding and border in width calculation */
    margin-bottom: 4px;;
    margin-left:-20px;
    margin-top: 2px;
    z-index: 3;
    transition: all 0.6s ease;
    transform: scale(1) translateX(0);
}
.vertical-menu a:hover {
    background-color: #906f1e; /* Hover effect */
    transform: scale(1.03) translateX(23px);
    color: #e0e0e0; /* Lighter text color on hover */
}

.vertical-menu a:active {
    background-color: #666; /* Click effect */
    transform: scale(0.95); /* Slight scale-down on click */
}

.vertical-menu .active {
    background-color: rgb(220, 200, 128);
    pointer-events: none; 
    transform: none;     
}
.button.subbutton {
    background-color: #65291d;
    margin-left: 0;
    margin-top: px;
    margin-bottom: 3px;
    color: #ceb949;
}
.button:hover .subbutton {
    display: block;
}
.submenu {
    display:none;
}
.menu-item:hover .submenu {
    display: block;
}
.bottom-menu {
    position: absolute;
    display: flex;
    width: 100%;
    height: 50px;
    background: rgb(200, 173, 128);    
    bottom: 0;
    z-index: 100;
    align-items: center;
    padding-left: 13px;
}

.bottom-menu a {
    z-index: 101;
    color: rgb(20, 20, 20);
    text-decoration: none;
    padding: 8px;
    margin-bottom: 4px;
}

.designed-for {
    margin-bottom: 1px;
    color: rgb(20, 20, 20);
    font-size: 11px;
    margin-left: 30px;
}

.bottom-menu a:hover {
    background-color: #557755;
    color: white;
    border-radius: 4px;
    transition: color 0.6s ease; /* Smooth color transition */
}

.image-container {
    position: absolute;
    top: 55px; /* Match .top-menu height */
    bottom: 55px; /* Match .bottom-menu height */
    left: 190px;
    right: 5px;
    display: flex;
    justify-content: left;
    align-items: left;
    overflow: auto;
}

.image-container img {
    position: absolute;
}

#wrapper {
    display: flex;
    align-items: flex-start;
}

#indicator {
    position: relative;
    top: 20px;
    left: 1px;
    width: 100px;
    height: 70px;
    border: 2px solid rgba(255, 255, 255, 0.5); /* Border of the indicator */
    margin-right: 20px;
}

.overlay-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.viewport {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7); /* Semi-transparent for the visible portion */
}
