/* Filename: nav.css */

/* Slide menu container */
#slide-nav {
    position: fixed;
    top: 50%;
    left: 0;
    
    width: 135px;
    height: 160px;
    background-image: url('/images/keyboard.jpg');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

/* Show menu when visible class is added */
#slide-nav.visible {
    transform: translateX(0);
}

/* Menu handle styling */
#menu-handle {
    position: absolute; /* Position relative to #slide-nav */
    top: 50%; /* Center vertically */
    left: 135px; /* Align to the right edge of the 135px-wide drawer */
    transform: translateY(-50%); /* Offset by half the handle's height to center vertically */
    width: 30px; /* Arbitrary width for the handle */
    height: 30px; /* Arbitrary height for the handle */
    line-height: 30px; /* Center the '>' text vertically */
    text-align: center; /* Center the '>' text horizontally */
    background-color: rgba(255, 0, 0, 0.5); /* Semi-transparent background for visibility */
    color: black; /* White text for contrast */
    cursor: pointer; /* Indicate interactivity */
    z-index: 1001; /* Ensure handle is above the drawer */
}

/* Menu list styling */
nav ul {
    list-style: none;
    width: 80%;
    padding-inline-start: 0px;
    margin-block-start: 0px;
    margin-block-end: 0px;
}

/* Menu item styling */
nav ul li {
    display: block;
}

nav ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    color: black;
    text-decoration: none;
    font-size: 16px;
    padding: 0 4px;
    width: 100%;
    height: 100%;
}

.menu-item-b {
    
    margin-left: 0px;
    width: 134px;
    height: 20px;
}

.menu-item-a {
    
    margin-top: 4px;
    margin-left: 0px;
    width: 134px;
    height: 20px;
}

.menu-item-g {
    
    margin-top: 4px;
    margin-left: 0px;
    width: 134px;
    height: 20px;
}

.menu-item-f {
    
    margin-top: 4px;
    margin-left: 0px;
    width: 134px;
    height: 20px;
}

.menu-item-e {
    
    margin-top: 1px;
    margin-left: 0px;
    width: 134px;
    height: 20px;
}

.menu-item-d {
    
    margin-top: 4px;
    margin-left: 0px;
    width: 134px;
    height: 20px;
}

.menu-item-c {
    
    margin-top: 1px;
    margin-left: 0px;
    width: 134px;
    height: 20px;
}