/ codersaidfund / src / components / GreenButton.css
GreenButton.css
 1  .green-button-container {
 2    position: fixed;
 3    top: 25px;
 4    right: 20px;
 5    z-index: 1001;
 6  }
 7  
 8  .green-button {
 9    background-color: green;
10    color: white;
11    border: none;
12    padding: 10px 20px;
13    font-size: 16px;
14    cursor: pointer;
15    border-radius: 5px;
16  }
17  
18  .green-button:hover {
19    background-color: darkgreen;
20  }