body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

header {
  background-color: #002b5c;
  color: white;
  padding: 1rem;
  text-align: center;
}

.constituent-info {
  background-color: #ffffff;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.constituent-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.event-timer {
  background-color: #e0e0e0;
  padding: 1rem;
  margin: 1rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem;
}

button {
  background-color: #0055a5;
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  flex: 1 1 30%;
  min-width: 120px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #003f7f;
}

.bill-section {
  background-color: #ffffff;
  margin: 1rem;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bill-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.vote-indicator {
  display: flex;
  justify-content: space-around;
  margin: 0.5rem 0;
}

.vote-indicator span {
  font-size: 1rem;
  font-weight: bold;
}

footer {
  background-color: #002b5c;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  button {
    flex: 1 1 100%;
  }
}
