* {
  margin: 0;
  padding: 0;
}

:root {
  --lightgray: rgb(211, 211, 211);
}

.my-div {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.btn-border {
  border: 1px solid var(--lightgray);
  border-radius: 4px;
}

.small-btn {
  font-size: 13px;
  font-weight: bold;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.btn-clicked:active {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 1);
  background-color: var(--lightgray);
}

.btn-add {
  background-color: white;
}

.dropdown-box {
  border: 1px solid var(--lightgray);
  border-radius: 2px;
}

.collapse-self {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12px;
  font-weight: 500;
  background-color: #d9edf7;
}

.collapse-btn {
  background-color: transparent;
  border: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
  color: gray;
}

.invalid-message {
  color: red;
  font-size: 13px;
  position: absolute;
  padding-left: 27px;
}

.selected-box {
  background-color: rgb(51, 122, 183);
  color: white;
  font-size: 13px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;

  & > button {
    border: none;
  }

  & > span > .subscript-cost {
    font-size: 11px;
    padding-left: 3px;
  }
}
