button {
  color: #fff !important;
  font-weight: bold;
  background-color: #007bff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
}

button:hover {
  background-color: #3a8ee6;
  color: #ffffff !important;
  cursor: pointer;
}
button {
  color: #ffffff !important;
  background-color: #007bff;
  border: none;
  font-weight: bold;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
  color: #ffffff !important;
  cursor: pointer;
}
button {
  background-color: #007bff;       /* Bold blue background */
  color: #ffffff !important;       /* White text with high contrast */
  font-weight: bold;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #0056b3;       /* Darker blue on hover */
  transform: scale(1.05);
  cursor: pointer;
}
