.floating-admin-menu {
    position: fixed;
    bottom: 20px;
    left: 5px;
    z-index: 1000;
}

.floating-admin-menu-backend {
    left: unset;
    right: 5px;
}

.menu-icon {
    width: 30px;
    height: 30px;
    color: #fff;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 5px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
    position: relative;
    z-index: 2;
}

.menu-icon a {
    text-decoration: none;
}

.menu-icon a:focus {
    outline: none;
    box-shadow: none;
}

.svg-container svg {
    width: 30px;
    height: 30px;
}

.submenu {
    display: none;
    position: absolute;
    bottom: 100%;
    /* Position the submenu above the menu icon */
    /*background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px;*/
    border-radius: 5px;
    z-index: 1;
    /* Ensure the submenu is below the icon */
    margin-bottom: 0;
    /* Overlap the submenu with the menu icon */
    width: max-content;
}

.submenu-backend {
    left: unset;
    right: 0;
}

.submenu ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.submenu ol li {
    margin: 0;
    line-height: 18px;
    background-color: #fff;
    margin: 8px 0;
    padding: 0 8px;
}

.submenu ol li a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bolder;
    font-size: 13px;
    text-transform: uppercase;
}

.submenu ol li a:hover {
    text-decoration: underline;
}

/* Show submenu when hovering over .menu-icon or .submenu */
.floating-admin-menu:hover .submenu,
.submenu:hover {
    display: block;
}

/* fallback */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v143/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-font-feature-settings: 'liga';
    -moz-osx-font-smoothing: grayscale;
}