    body {
        margin: 0;
        height: 100vh;
        background: #f0f0f0;
        font-family: Arial, sans-serif;
    }
    #menuIcon {
        position: fixed;
        bottom: 50px;
        right: 50px;
        width: 60px;
        height: 60px;
        background: #4a90e2;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 28px;
        cursor: grab;
        z-index: 9999;
        transition: transform 0.2s ease;
        touch-action: none;
    }
    #menuIcon:active {
        cursor: grabbing;
        transform: scale(1.05);
    }
    #menu {
        position: fixed;
        background: white;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        border-radius: 10px;
        overflow: hidden;
        opacity: 0;
        transform: scale(0.8);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 9998;
    }
    #menu.show {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }
    #menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #menu ul li {
        padding: 12px 20px;
        cursor: pointer;
        transition: background 0.2s;
        white-space: nowrap;
    }
    #menu ul li:hover {
        background: #f0f0f0;
    }
    @media (max-width: 768px) {
    #menuIcon {
        width: 70px !important;
        height: 70px !important;
        font-size: 30px !important;
    }

    #floatingMenu {
        font-size: 18px !important;
        padding: 12px !important;
    }

    #floatingMenu a {
        font-size: 18px !important;
        padding: 10px !important;
    }
}
html {
    scroll-behavior: smooth;
}
#menu {
    background: #ffffff; /* Clean light background */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 200px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    overflow: hidden; /* For clean edges */
}

#menu ul {
    list-style: none; 
    margin: 0;
    padding: 0;
}

#menu ul li {
    border-bottom: 1px solid #e0e0e0; /* Divider line */
}

#menu ul li:last-child {
    border-bottom: none; /* No line on last item */
}

#menu ul li a {
    text-decoration: none;
    color: #333; /* Dark grey text */
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px 14px;
    transition: all 0.25s ease;
}

#menu ul li a:hover {
    background-color: #f5f5f5; /* Light grey hover */
    color: #007bff; /* Blue text on hover */
    padding-left: 18px; /* Subtle movement */
}
