diff --git a/index.html b/index.html index 289c8fc..8454d89 100644 --- a/index.html +++ b/index.html @@ -83,18 +83,19 @@ .poll-button.selected { background-color: #2196F3; /* Blue for selected */ + color:white /*Makes the text clearly visible */ } /* New Vote Button Styles */ - .vote-button { + #voteButton, .vote-button { display: block; /* Change to block for full-width */ margin: 5px 0; /* Add vertical margin */ padding: 10px 15px; border: none; border-radius: 5px; - background-color: #f44336; /* Red */ + background-color: #1d5459; color: white; cursor: pointer; transition: background-color 0.3s; @@ -102,9 +103,9 @@ } - .vote-button:hover { - - background-color: #d32f2f; /* Darker red */ + #voteButton:hover,.vote-button:hover { + color: #143f43; + background-color: #7ec1c5; }