.button {
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  padding: 10px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #FFFFFF;
  min-width: 120px;
  max-width: fit-content;
  margin: 0 5px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-primary {
  background-color: #0073a6;
  border: 1px solid #0073a6;
}

.button-primary:hover {
  background-color: #005073;
  border: 1px solid #005073;
}

.button-secondary {
  background-color: #005073;
  border: 1px solid #005073;
}

.button-secondary:hover {
  background-color: #0073a6;
  border: 1px solid #0073a6;
}

.button-container{
  margin-bottom:20px;
}

.button-pagination {
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  padding: 10px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #FFFFFF;
  min-width: 120px;
  max-width: 200px;
  margin: 0 5px;
  background-color: #688181;
  border: 1px solid #688181;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-pagination:hover {
  background-color: #383838;
  border: 1px solid #383838;
}
