.custom-button-row {
  display: flex;
  gap: 20px; /* space between buttons */
  flex-wrap: wrap; /* optional for responsiveness */
  justify-content: center; /* or 'flex-start' if you prefer left-aligned */
  margin-top: 20px;
}

.custom-button {
  background-color: #00629b;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 4px;
  text-align: center;
  flex: 1 1 auto; /* make buttons grow if needed */
  max-width: 300px; /* optional max width */
  transition: background-color 0.3s ease;
}

.custom-button:hover {
  background-color: #004b78; /* darker on hover */
}

.breadcrumbs li + li::before {
  content: none !important;
}
