.action-progress {
  position: absolute;
  z-index: 18;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(28, 22, 22, .18);
  pointer-events: none;
}

.progress-ring {
  --progress: 0deg;
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#f0dca7 var(--progress), rgba(240, 220, 167, .18) 0);
  filter: drop-shadow(0 4px 4px #2b1d19);
}

.progress-ring::before {
  content: "";
  position: absolute;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: rgba(80, 55, 48, .82);
}

.progress-ring span {
  position: relative;
  color: #f4e3b3;
  font-size: 25px;
  text-shadow: 0 2px 2px #261a17;
}

.inventory-item button {
  width: 100%;
  margin-top: 10px;
  padding: 7px;
  border: 1px solid #654638;
  background: #493127;
  color: #f1dca7;
  cursor: pointer;
}

.inventory-item button:disabled { opacity: .45; cursor: default; }
.camp-card .choice small { display: inline; margin-left: .5em; }

.upgrade-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.upgrade-summary span {
  padding: 12px 8px;
  border: 1px solid #765448;
  background: rgba(250, 226, 174, .35);
  text-align: center;
}

.upgrade-summary b { display: block; margin-top: 5px; font-size: 22px; }

.mini-map-panel {
  position: absolute;
  z-index: 5;
  left: 2.2vw;
  top: 11.5vh;
  width: clamp(190px, 19vw, 275px);
  padding: 7px 8px 9px;
  border: 3px double rgba(62, 43, 34, .9);
  background: rgba(224, 188, 126, .9);
  color: #39261f;
  box-shadow: 0 4px 0 rgba(35, 23, 20, .45);
}

.mini-map-panel span {
  display: block;
  margin-bottom: 5px;
  text-align: center;
  font-size: 12px;
  letter-spacing: .04em;
}

#miniMap {
  display: block;
  width: 100%;
  height: clamp(94px, 12.5vw, 145px);
  border: 1px solid #5b3f34;
  background: #795044;
}

@media (max-width: 800px) {
  .mini-map-panel { width: 170px; transform: scale(.78); transform-origin: top left; }
}
