/* Container starts at the bottom */
#bottom-menu-container {
    position: fixed; !important;
    bottom: 0; !important;
    left: 0;
    width: 100%;
    background: #808080; /* Solid Gray */
    transition: height 0.4s ease-in-out;
    height: 50px; /* Collapsed Height */
    z-index: 999;
}

/* The Border on Top */
#menu-border {
    height: 10px; /* Collapsed Border */
    background: #d3d3d3; /* Light Gray */
    width: 100%;
    position: relative;
    transition: height 0.4s ease-in-out;
}

/* The White Square Button */
#menu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: none;
    cursor: pointer;
}

/* Expanded State Classes */
#bottom-menu-container.expanded {
    height: 80vh; /* 80% of screen height */
}

#bottom-menu-container.expanded #menu-border {
    height: 50px; /* Expanded Border */
}

#menu-content {
    display: block;
    overflow: hidden;
}