body {
  font-family: "Cutive Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

button {
  font-family: "Cutive Mono", monospace;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
}

.center-container {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  gap: 70px;
}

.input {
  width: 200px;
  height: 40px;
}

.button-container {
  position: absolute;
  top: 20%;
  display: flex;
  gap: 20px;
}

.activity-button {
  width: 140px;
  height: 70px;
  border-radius: 12% / 50%;
  background-color: transparent;
  transition: box-shadow 0.1s, transform 0.1s;
}

.activity-button:hover {
  transform: scale(1.025);
  cursor: pointer;
  box-shadow: 0px 2px 5px black;
}

.remove-button:hover {
  background-color: rgba(255, 0, 0, 0.2);
}

.add-button:hover {
  background-color: rgba(0, 255, 0, 0.2);
}

.activity-button:active{
  transform: scale(0.975);
  box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.8), /* inner shadow */
              inset 0px 0px 5px rgba(255, 255, 255, 0.3);
}

.activities-container {
  width: 55vw;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: wrap;
}

.activity-container {
  width: 220px;
  display: flex;
  flex-direction: column;
}

select {
  height: 4em;
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;

  font-family: "Cutive Mono", monospace;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
}

select:hover {
  cursor: pointer;
}

.activity-list-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 0;
  height: 100vh;
  border-right: 1px solid black;
  padding-left: 10px;
  width: 18vw;
}

.activity-list-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, black, transparent);
}

.activity-list {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

.category-container {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.category-title {
  margin: 0px;
}

.activity-text {
  margin-top: 10px;
  margin-bottom: 0;
}

.activity-text:hover {
  transform: translateX(20px);
  transition: transform 0.2s;
  cursor: pointer;
}

.activity-text:active {
  transform: scale(0.8);
  transition: transform 0.1s;
}

.filter-dropdown {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 1;
  max-height: 150px;
  overflow-y: auto;
  width: 200px;
  left: 20vw;
  top: 10vh;
}
.filter-button:hover {
  cursor: pointer;
}

