.segment-button-container {
  display: flex;
  margin-bottom: 50px;
  justify-content: center;
}

.segment-button,
.segment-selected-button {
  border: 1px solid #39ca6e;
  width: 150px;
  margin: 0;
  color: #39ca6e;
  font-weight: 500;
  height: 40px;
  font-size: 18px;
}

.segment-selected-button {
  background-color: #39ca6e;
  color: #fff;
}

@media (max-width: 768px) {
  .segment-button-container {
    flex-wrap: wrap;
  }

  .segment-button,
  .segment-selected-button {
    width: 100%;
    margin: 5px;
    font-size: 16px;
  }
}
