.overlay-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay);
  z-index: 1;
  display: none;
}

.info-panel {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 80%;
  background-color: var(--color-translucent);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 20%); /* Medium shadow */
  z-index: 2;
  text-align: center;
  display: none;
  position: fixed;
  overflow-y: auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  font-size: 20px;
  font-weight: bold;
  color: var(--midnight-blue);
  cursor: pointer;
  transition: color 0.3s ease;
}

@media (hover: hover) {
  .close-btn:hover {
    color: red;
  }
}

tr.shortcut {
  & > td {
    border: 1px solid black;
    padding: 8px;
  }

  & > td:first-child {
    width: 10%;
  }
}
