/* Style for the small icon button */
.icon-button {
            position: fixed;
            top: 50%;
            right: 10px;
            border: none;
            border-radius: 50%;
            padding: 3px;
            cursor: pointer;
            transition: 0.3s;
			
        }

/* Icon inside the button */
.icon-button i {
            font-size: 24px;
            color: white;
        }

        /* Button hover effect */
        .icon-button:hover {

        }
        
        
