#floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

#menu-toggle {
    background: darkgreen; /* #ff9800 = orange */
    color: white;
    border: none;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#menu-content {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#menu-content a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #ddd;
}

#menu-content a:hover {
    background: darkgreen; /* #ff9800 = orange */
    color: white;
}
