html,
body {
  min-height: 100vh;
  overflow: auto;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: white;
  font-family: Poppins, sans-serif;
  background-color: #1d1e28;
}

.content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}

.buttons-container {
  display: flex;
  align-items: center;
}

.buttons-group {
  display: flex;
  flex-direction: column;
}

.button {
  width: 100px;
  margin: 10px 2px;
  padding: 15px 48px;
  color: white;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}

.available-button {
  background-color: #1fc71f;
}

.problem-available-button {
  background-color: #f30808;
}

.unavailable-button {
  background-color: #eeb282;
}
