#feedback-button {
    position: fixed; /* Makes it stay put while scrolling */
    bottom: 20px;    /* Position from bottom */
    right: 20px;     /* Position from right */
    background-color: #4C05FF; /* Button color */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;   /* Ensures it floats above other content */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	opacity: 0.8;
	border-radius: 15px;
}

#feedback-form {
    position: fixed;
    bottom: 60px; /* Position slightly above the button */
    right: 20px;
    background-color: #DDFFDD;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1001;
	opacity: 0.9;
	border-radius: 15px;
}
#Close-button {
	background-color: red; /* Green */
    color: white;
    padding: 8px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
	font-weight: bold;
}

#Submit-button {
	background-color: blue; /* Green */
    color: white;
    padding: 8px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
	font-weight: bold;
}
#Clear-button {
	background-color: black; /* Green */
    color: white;
    padding: 8px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
	font-weight: bold;
}