/* TEMPORARY BUTTON */
.dev-button {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0.25rem;
}

.detail-header {
  display: flex;
  justify-content: center;
}

.tail-padding {
  padding-bottom: 4.5rem;
}

.nav-header {
  display: flex;
  justify-content: space-between;
}

a.nav-highlight {
  color: #24a5f9;
}

.empty-message {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.entry-item {
  display: flex;
  gap: 0.5rem;
  height: 25vw;
  max-height: 200px;
  min-height: 94px;
  margin-top: 0.25rem;
  padding: 5px;
  background-color: #1a1c1e;
}

.entry-item:hover {
  cursor: pointer;
}

.entry-item-pic {
  width: calc(100% / 6);
  min-width: 59px;
}

.entry-info {
  width: 0; /* DO NOT REMOVE */
  flex-grow: 1;
}

.entry-score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem 0;
  height: fit-content;
  width: 3rem;
  background-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 1px;
  border-color: #24a5f9;
}

.entry-score-head {
  font-size: 0.8rem;
}

.entry-score {
  font-size: 1rem;
}

.entry-edit-button,
.entry-detail-button {
  width: 100%;
}

.search-input {
  width: 80%;
}

.search-notification {
  margin-top: 1rem;
  text-align: center;
}

@media screen and (min-width: 500px) {
  .entry-item {
    margin-top: 0.5rem;
    padding: 0.5rem;
    gap: 1rem;
  }

  .entry-edit-button {
    width: 100%;
    padding: 0.25rem   1rem;
  }

  .entry-score-card {
    width: 5rem;
    padding: 0.25rem;
    font-size: 1rem;
  }

  .entry-score-head {
    font-size: 1rem;
  }

  .entry-score {
    font-size: 1.5rem;
    font-weight: bold;
  }
}
