@import "@css/main.css";

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  width: 11rem;
  margin: 0;
  padding: 0.5rem 1rem;

  font-family: "SF Pro Text", "Noto Sans KR", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;

  border: none;
  cursor: pointer;
  background: $color-gray-005;
  border-radius: 6px;
  color: $color-gray-001;
}

button:hover,
button:focus {
  background: #313A3D;
}

button.selected {
  background: $color-gray-005-selected;
}

.fa {
  display: inline-flex;
  width: 1.375rem;
  height: 1.375rem;
}

.title {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}