/* Common utility classes */
.hidden {
  display: none;
}

.full-width {
  width: 99%;
  display: block;
}

/* Version display specific tooltip */
#versionDisplay {
  position: fixed;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  color: var(--text-light);
  background-color: var(--bg-night);
  padding: 3px 8px;
  border-radius: 4px;
}

#versionDisplay .tooltiptext {
  bottom: 30px;
}

/* Layout components */
.sidebar {
  float: left;
  padding: 10px;
  width: 100px;
  height: 88vh;
  background-color: black;
}

.info-box {
  background-color: var(--text-medium);
  padding-left: 130px;
  display: block;
  height: 60px;
}

.info-box p {
  display: inline-block;
  margin-bottom: none;
}

.options-container {
  width: 150px;
  height: 50px;
  float: right;
}

.options-button {
  width: 150px;
  height: 30px;
  margin: 0px;
}

.action-buttons {
  display: block;
  float: left;
  margin-left: 5px;
  margin-top: 5px;
}

.navigateButtons {
  float: left;
  align-items: center;
  padding: 4px 7px 7px 7px;
  margin: 10px;
  background: var(--bg-night);
}

.navigate-button {
    width: 120px;
    margin: 3px 0px 3px 0px;
    display: block;
}

/* Module containers */
.module-container {
  width: 380px;
}

.module-location {
  position: relative;
}

#bakery {
  height: 800px;
  width: 760px;
}

/* Donation button */
.donation-link {
  color: black;
}

#donationButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 80px;
  width: 80px;
  background-color: #4DFE89;
}

/* End screen */
#endScreen {
  background-color: black;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: #FFFFFF;
}

/* Game UI Elements */
#pickUpLimes {
  background-color: var(--accent-tertiary);
  width: 120px;
}

#lookAroundButton {
  background-color: var(--text-medium);
}

.titleText {
  padding: 5px;
  margin: 5px;
  background-color: var(--text-medium);
  text-align: center;
}

.roundButton {
  padding: 1px 10px;
  border-radius: 12px;
}

.pinButton {
  background-color: #FF999A;
  height: 20px;
  width: 20px;
  font-size: 11px;
  padding: 0px;
}

.verticalProgress {
  width: 350px;
  height: 300px;
  margin: auto;
  position: relative;
  background-color: black;
  margin: 5px;
}

.verticalBar {
  height: 0%;
  width: 350px;
  bottom: 0;
  right: 0;
  position: absolute;
  font-family: pixelated;
  padding: 0;
}

.bucketProgress {
  background-color: var(--text-medium);
  width: 166px;
  height: 100px;
  display: inline-block;
  margin: 5px;
  position: relative;
}

.smallContainerBar {
  height: 0%;
  width: 167px;
  bottom: 0;
  right: 0;
  font-family: pixelated;
  position: absolute;
  bottom: 0;
}

.bucketHoleBar {
  height: 10px;
  background-color: black;
  bottom: 0;
  position: absolute;
}

/* Lore System CSS */
.loreEntry {
    margin-bottom: 10px;
    cursor: pointer;
    padding: 5px;
    background-color: #222222;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.loreEntry:hover {
    background-color: #B55088 !important;
}

.loreTab {
    margin-right: 5px;
    transition: background-color 0.2s;
}

/* Market */
.market-container {
  padding: 0;
  margin: 0;
}

.ui-option {
  width:342px;
}

.wide-button {
  width: 166px;
}