.menu {
    display: flex;
    position: absolute;
        top: 100;
        width: 100px;
        flex-direction: column;
        background-color: #123456;
        z-index: 1000;
        padding: 10px;
        border-radius: 10px;
        margin-top: 0;
        margin-bottom: 1;
}
@media (max-width: 768px) {
    .menu {
        left: 0px;
    }
}
@media (min-width: 1024px) {
    .menu {
        left: 200px;
    }
}
.menu a {
    color: white;
    font-weight: bold;
    padding: 10px;
    text-decoration: none;
    font-family: Arial;
    font-size: 16px;
}
.menu a:hover, .menu a:focus {
    background-color: #45a1ff;
    border-radius: 10px;
}

    /* Hide the menu on mobile devices by default */
@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 100;
        left: 0;
        width: 100px;
        flex-direction: column;
        background-color: #123456;
        z-index: 1000;
        border-radius: 10px;
        
    }
}

/* Style for when the menu is toggled to show */
.menu.responsive {
    display: flex !important;
}

.menu-toggle {
    width: 30px;
    height: auto;
}

@media (min-width: 768px) {
    .menu-toggle {
        width: 40px;
        height: auto;
    }
}
.menu-toggle {
    width: 100px; /* Adjusts width for image icons, assuming 30pt desired */
    height: auto; /* Maintains aspect ratio */
}