:root {
  --light-blue: #92c2f6;
}

body {
  margin-top: 1rem;
  background-color: var(--light-blue);
}

.clickable {
  cursor: pointer;
}

.content {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--white);
  border-radius: 1rem;
  border: 0.0625rem solid var(--blue);
  min-height: 20rem;
  max-height: 86vh;
  /*overflow-x: hidden; // Probably won't work on small screen sizes*/
  overflow-y: scroll;
}

.chance-to-hit {
  align-items: center;
  display: flex;
}

.weapon-list {
  margin-top: 0.5rem;
}

.weapon-row {
  border: 1px solid transparent;
  border-radius: 1rem;
  margin-bottom: 1px;
  margin-top: 1px;
}

.weapon-info-container {
  padding-left: 0;
}

.highest {
  background-color: #ffe6e6;
  border: 1px solid #ffb3b3;
}

.dmg-format {
  margin-left: 2rem;
}

.highest-legend {
  border-radius: 1rem;
  height: 1.5rem;
  margin-left: 2rem;
  margin-right: 0.5rem;
  width: 1.5rem;
}

.weapon-row:hover {
  background-color: #e9ecef;
  border: 1px solid #babdbf;
  transition: border 0.5s, background-color 0.5s;
}

.weapon-row.highest:hover {
  background-color: #e5e5ff;
  border: 1px solid #b3b3ff;
}

.weapon-header {
  align-items: flex-end;
}

.dropdown-scroll {
  overflow: scroll;
  max-height: 25rem;
}

.stats-section .row .input-group {
  align-items: center;
}

footer {
  margin: 0.5rem 1rem;
}

.fixed {
  position: sticky;
  top: -1rem;
  border-bottom: thin solid #ccc7c7;
  padding-bottom: 0.25rem;
  z-index: 1;
  background-color: white;
  padding-top: 0.25rem;
}

.collapse-icon {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.flip {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.hide {
  display: none;
}

.no-left-pad {
  padding-left: 0;
}

.overflow {
  overflow: hidden;
}
