Election Notifications
/* Home button styling */
.home-button {
position: fixed; /* stays in top-right even when scrolling */
top: 20px;
right: 20px;
background: rgba(255, 255, 255, 0.25); /* glass effect */
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
padding: 10px 20px;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.6);
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
text-decoration: none;
font-weight: 700;
color: red;
transition: all 0.3s ease;
z-index: 9999; /* ensure it stays on top */
}
.home-button:hover {
b