@font-face {
    font-family: 'Yahfie';
    src: url("/fonts/Yahfie/Yahfie-Light.ttf") format('truetype');
    font-weight: 300;
    font-style: normal;
}
  
@font-face {
    font-family: 'Yahfie';
    src: url("/fonts/Yahfie/Yahfie-Normal.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Yahfie';
    src: url("/fonts/Yahfie/Yahfie-Heavy.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
}


body {
  background-color: #131313;
  color: #E0E0E0;
  font-family: 'Yahfie', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.App {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2vh 2vw;
}

.app-title {
  position: relative;
  margin-top: 7vh;
  margin-bottom: 5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50vw;
  height: 25vh;
  border: 1px solid #e0e0e060;
  border-radius: 2rem;
}

.app-title > h1 {
  font-size: clamp(24px, 5vw, 48px);
  z-index: 1;
}

.app-title > p {
  font-size: clamp(14px, 2vw, 24px);
  z-index: 1;
}

.app-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/title-background.png");
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  z-index: -1;
}

.gamemode-buttons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50vw;
  gap: 2vw;
}
.gamemode-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, 0.2s ease;
  width: 22vw;
  padding: 1vw;
  background-color: #121212;
  border: 1px solid;
  border-radius: 2rem;
}

.border-neon-red {
  border-color: #ff0000;
  box-shadow:
    0 0 5px #ff0000,
    0 0 10px #ff0000,
    0 0 20px #ff0000,
    0 0 40px #ff0000;
}

.border-neon-violet {
  border-color: #8B00FF;
  box-shadow:
    0 0 5px #8B00FF,
    0 0 10px #8B00FF,
    0 0 20px #8B00FF,
    0 0 40px #8B00FF;
}

.gamemode-icon {
  width: 5vw;
  height: 5vw;
}
.gamemode-title {
  font-size: clamp(18px, 3vw, 30px);
}

.gamemode-description {
  font-size: clamp(10px, 1.5vw, 18px);
  text-align: center;
}

.gamemode-button {
  margin-top: 1vh;
  padding: 1vw 20%;
  border-radius: 1rem;
  cursor: pointer;
  border: 1px solid;
  font-family: 'Yahfie', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1.5vw, 18px);
  transition: all 0.2s ease;
}

.gamemode-button-neon-red {
  background-color: #ff000011;
  color: #fff;
  border-color: #ff0000;
}

.gamemode-button-neon-red:hover {
  transform: scale(1.05);
  box-shadow: 0 0 5px #ff0000,
    0 0 10px #ff0000,
    0 0 20px #ff0000,
    0 0 40px #ff0000;
}

.gamemode-button-neon-violet {
  background-color: #8B00FF11;
  color: #fff;
  border-color: #8B00FF;
}

.gamemode-button-neon-violet:hover {
  transform: scale(1.05);
  box-shadow: 0 0 5px #8B00FF,
    0 0 10px #8B00FF,
    0 0 20px #8B00FF,
    0 0 40px #8B00FF;
}

.guess-ghost {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50vw;
  min-height: 100vh;
}

.left-sidebar, .right-sidebar {
  display: block;
  width: 25vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  position: sticky;
  top: 0;
}

.gamemode-description-icon {
  width: 2vw;
  height: 2vw;
}

.gamemode-description-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1vh;
}

.ghost-search{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 50vw;
  padding: 2vh 2vw;
  border: 1px solid #e0e0e060;
  box-sizing: border-box;
  border-radius: 2rem;
  height: 30vh;
  background-color: #121212;
  box-shadow: #e0e0e060 0px 0px 15px;
  margin-top: 9vh;
  text-align: center;
}

.ghost-search-input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ghost-search-input-wrapper > input {
  width: 80%;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e0e0e060;
  color: #e0e0e060;
  background-color: rgba(10, 12, 16, 0.9);
  transition: all 0.2s ease;
  font-family: 'Yahfie', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ghost-search-input-wrapper > input:focus {
  outline: none;
  box-shadow: 
    0 0 5px #ff0000,
    0 0 10px #ff0000;
}

.ghost-search-results{
  position: absolute;
  width: 85%;
  top: 100%;
  background-color: #121212;;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  margin: 0;  
  padding: 0;
  list-style: none;
  overflow-y: auto;
  max-height: 30vh;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  z-index: 10;
}

.ghost-search-results > li{
  padding: 0.5vw;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.ghost-search-results > li:hover{
  background-color: rgba(128, 128, 128, 0.11);
}

.ghost-search-results-image {
  width: clamp(24px, 5vw, 40px);
}

.answers-list {
  display: grid;
  grid-template-columns: auto 2fr 1fr 3fr 3fr 3fr;
  border: 1px solid #e0e0e060;
  border-radius: 2rem;
  padding: 0;
  border-collapse: collapse;
  width: 50vw;
  overflow: hidden;
  gap: 1px;
  box-shadow: #000000d2 0px 0px 15px;
}

.answers-list > li {
  display: contents;
}

.answers-list > li > * {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ghost-answers-image {
  width: 100%;
  height: 100%;
  max-height: 7vh;
  width: auto;
}

.answer-true {
  background-color: rgba(8, 105, 8, 0.233);
}

.answer-false {
  background-color: rgba(134, 11, 11, 0.308);
}

.answer-True {
  background-color: rgba(8, 105, 8, 0.233);
}

.answer-False {
  background-color: rgba(134, 11, 11, 0.308);
}

.answer-lower {
  background-color: #8c00ff4b;
}
.answer-higher {
  background-color: #8c00ff4b;
}

.hunt-threshold{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hunt-threshold-title {
  position: relative;
}

.hunt-threshold-title-info {
  position: absolute;
  top: 100%;
  right: 50%;
  margin: 0;
  padding: 0;
  transform: translateX(50%)
}

#ghost-answers-first-row, #place-answers-first-row > *{ /*removing the default <p> margin*/
  font-weight: bold;
  margin: 0;
  border-collapse: collapse;
  height: 100%;
  text-align: center;
}

.answer-row > * {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.answer-row.show > * {
  opacity: 1;
  transform: translateY(0);
}

.answer-row.show > *:nth-child(1) { transition-delay: 0s; }
.answer-row.show > *:nth-child(2) { transition-delay: 0s; }
.answer-row.show > *:nth-child(3) { transition-delay: 0.5s; }
.answer-row.show > *:nth-child(4) { transition-delay: 1s; }
.answer-row.show > *:nth-child(5) { transition-delay: 1.5s; }
.answer-row.show > *:nth-child(6) { transition-delay: 2s; }

.login-bar {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 1rem;
  height: 5vh;
  text-align: right;
  color: #fff;
  box-sizing: border-box;
  background: rgba(10, 12, 16, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  z-index: 100;
}

.login-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    #8B0000,
    transparent
  );
}

.login-bar-logo {
  font-size: 4vh;
  cursor: pointer;
}

.neon-red {
  color: #ff0000;
  text-shadow:
    0 0 5px #ff0000,
    0 0 10px #ff0000,
    0 0 20px #ff0000,
    0 0 40px #ff0000;
}

.login-bar-nav {
  display: flex;
  width: 30vw;
  justify-content: space-evenly;
}

.nav-item {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.2vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-item.item-1:hover, .nav-item.item-1.active {
  text-shadow:
    0 0 5px #E0E0E0,
    0 0 10px #E0E0E0,
    0 0 20px #E0E0E0,
    0 0 40px #E0E0E0;
}

.nav-item.item-2:hover, .nav-item.item-2.active {
  text-shadow:
    0 0 5px #ff0000,
    0 0 10px #ff0000,
    0 0 20px #ff0000,
    0 0 40px #ff0000;
}

.nav-item.item-3:hover, .nav-item.item-3.active {
  text-shadow:
    0 0 5px #8B00FF,
    0 0 10px #8B00FF,
    0 0 20px #8B00FF,
    0 0 40px #8B00FF;
}

.nav-svg-icon {
  height: 2vh;
  width: 2vh;
  margin: 0.5rem;
}

.login-bar-logout, .login-bar-login {
  all: unset;
  text-decoration: underline;
  cursor: pointer;
}

.login-form-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
}
.form-input{
  width: 80%;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e0e0e060;
  color: #e0e0e060;
  background-color: rgba(10, 12, 16, 0.9);
  transition: all 0.2s ease;
  font-family: 'Yahfie', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px rgba(10, 12, 16, 0.9) inset;
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

.login-form > button {
  padding: 1vh 2vh;
  width: 80%;
  border-radius: 1rem;
  font-family: 'Yahfie', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2vh;
  font-weight: 1000;
  color: #e0e0e060;
  background-color: #e0e0e013;
  border: 1px solid #e0e0e060;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 0 5px #e0e0e060,
    0 0 10px #e0e0e060,
}

.form-modal {
  display: flex;
  flex-direction: column;
  width: 20vw;
  height: 50vh;
  background-color: #121212;
  border: 2px solid black;
  border-radius: 2rem;
  justify-content: space-evenly;
  align-items: center;
}

.login-form > button:hover {
  background-color: #e0e0e060;
  color: #fff;
  box-shadow: 0 0 5px #e0e0e060,
    0 0 10px #e0e0e060,
    0 0 20px #e0e0e060,
    0 0 40px #e0e0e060;
}

.svg-room {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.2s ease, fill 0.2s ease;
}

.svg-room:not(.clicked):hover {
  cursor: pointer;
  transform: scale(1.05);
  cursor: pointer;
  fill:rgba(8, 105, 8, 0.432)
}

.guess-room {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: center;
}

.guess-room-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
  width: 50vw;
  padding: 2vh 2vw;
  border: 1px solid #e0e0e060;
  box-sizing: border-box;
  margin-top: 9vh;
  margin-bottom: 4vh;
  border-radius: 2rem;
  height: auto;
  background-color: #121212;
  box-shadow: #e0e0e060 0px 0px 15px;
}

.map-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 50vw;
  border: rgb(14, 13, 13) 1rem solid ;
  background-color: #050608;
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.8),
    0 10px 40px rgba(0,0,0,0.9),
    inset 0 0 20px rgba(0,0,0,0.9),
    inset 0 0 40px rgba(0,255,150,0.05);
}

.map {
  margin-left: auto;
}

.map-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;

  background: linear-gradient(
    rgba(255,255,255,0.03),
    rgba(0,0,0,0.2)
  );

  pointer-events: none;
}

.map-container::after {
  content: "";
  position: absolute;
  bottom: -2%;
  right: 2%;
  width: 0.2vw;
  height: 0.2vw;
  border-radius: 50%;
  background: #00ff9c;

  box-shadow: 0 0 8px #00ff9c;
}

.map-selector {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  width: 10vw;
  background-color: rgba(10, 12, 16, 0.9);
  color: #e0e0e060;
  font-family: 'Yahfie', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 1vw;
  appearance: none;
  cursor: pointer;
  text-align: center;
  font-size: 1vw;
  box-sizing: border-box;
  border: 1px solid #e0e0e060;
}

.map-selector-down-arrow {
  position: absolute;
  left: 5vw;
  top: 1.6vw;
  font-size: 1.5vw;
  display: block;
  transform: translateX(-50%);
  z-index: 60;
  font-family: "Yahfie", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e0e0e060;
  pointer-events: none;
}

.level-buttons-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 10vw;
  height: 100%; 
}

.level-buttons-container > button {
  margin-bottom: 2vh;
  cursor: pointer;
  background: transparent;
  border: none;
  color: #e0e0e060;
  font-family: 'Yahfie', 'Segoe UI', Tahoma, Geneva;
  font-size: 2rem;
}

.svg-map {
  width: 40vw;
  height: auto;
}

.daily-room-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
  width: 90%;
}

.daily-room-img-container {
  height: 25vh;
  width: 40%;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 5px #8B00FF,
    0 0 10px #8B00FF;
}

.daily-room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.place-answers-list {
  display: grid;
  grid-template-columns: 4fr 4fr 1fr;
  border: 1px solid #e0e0e060;
  border-radius: 2rem;
  padding: 0;
  border-collapse: collapse;
  width: 50vw;
  overflow: hidden;
  gap: 1px;
  box-shadow: #000000d2 0px 0px 15px;
}

.place-answers-list > li {
  display: contents;
}

.place-answers-list > li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5vh;
}

#place-answers-first-row > *{
  height: 4rem;
}

.place-answer-row > * {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.place-answer-row.show > * {
  opacity: 1;
  transform: translateY(0);
}

.place-answer-row.show > *:nth-child(1) { transition-delay: 0.5s; }
.place-answer-row.show > *:nth-child(2) { transition-delay: 1s; }
.place-answer-row.show > *:nth-child(3) { transition-delay: 1.5s; }

.ranking-container {
  background-color: #121212;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
  width: 15vw;
  margin-top: 9vh;
}

.ranking-border-neon-red {
  border-color: #ff0000;
  box-shadow:
    0 0 5px #ff0000,
    0 0 10px #ff0000;
  border-radius: 2rem;
} 

.ranking-list {
  display: grid;
  grid-template-columns: 3fr 1fr;
  border: 1px solid #e0e0e060;
  border-collapse: collapse;
  border-radius: 1rem;
  width: 60%;
}

.ranking-list > * {
  padding: 0.5vw;
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8vw;
}

.ranking-border-neon-violet {
  border-color: #8B00FF;
  box-shadow:
    0 0 5px #8B00FF,
    0 0 10px #8B00FF;
  border-radius: 2rem;
}

.custom-toast {
  background-color: #121212 !important;
  color: #E0E0E0 !important;
  font-family: 'Yahfie', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  border: 1px solid #e0e0e060 !important;
  border-radius: 1rem !important;
  box-shadow: #000000d2 0px 0px 15px !important;
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 2vh;
}

.error-boundary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 2vh;
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 2vh;
}

.red-text-glow {
  color: #ff0000;
  text-shadow:
    0 0 5px #ff0000,
    0 0 10px #ff0000;
  cursor: pointer;
}

.violet-text-glow {
  color: #8B00FF;
  text-shadow:
    0 0 5px #8B00FF,
    0 0 10px #8B00FF;
  cursor: pointer;
}

.form-modal-text-switcher {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.input-label-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.input-label-group > label {
  align-self: flex-start;
  margin-left: 10%;
}

.input-error {
  color: #ff0000;
  font-size: 0.7vw;
  margin-top: 0;
  margin-bottom: 0;
  align-self: flex-start;
  margin-left: 10%;
  text-align: left;
  margin-right: 10%;
}

.your-stats-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 50vw;
  padding: 2vh 2vw;
  border: 1px solid #e0e0e060;
  box-sizing: border-box;
  margin-bottom: 4vh;
  border-radius: 2rem;
  height: auto;
  background-color: #121212;
  box-shadow: #e0e0e060 0px 0px 15px;
  margin: 5vh 0;
}

.streaks-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

.streak-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.verify-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 2vh;
}

.verification-title::after {
  content: '.';
  animation: dots 1s steps(3, end) infinite;
}

.mobile-only {
  display: none;
}
.map-selector-info{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1500;
  width: 1.5vw;
  height: 1.5vw;
}

.profile-icon {
  margin: 0 1rem;
  transform: translateY(15%);
  color: #e0e0e060;
}

.ranking-blur {
  position: relative;
}

.ranking-blur::after {
  content: "Login to view rankings";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0; /* Rozciągamy na całość */
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  color: #e0e0e0;
  font-size: 1.5vw;
  font-family: 'Yahfie', sans-serif;
  border-radius: 2rem;
  transform: scale(110%);
  
  backdrop-filter: blur(10px);
  background-color: linear-gradient(to bottom, rgba(88, 17, 17, 0.815), rgba(163, 13, 209, 0.295));
}

.svg-outside {
  transition: all 0.2s ease;
}
.svg-outside:not(.clicked):hover {
  fill: rgba(8, 105, 8, 0.158);
  cursor: pointer;
}

@keyframes dots {
  0%, 20% { content: ''; }
  40% { content: '.'; }
  60% { content: '..'; }
  80%, 100% { content: '...'; }
}

@media (max-width: 768px) {
  .app-title {
    width: 90vw;
    height: auto;
    padding: 2vh 2vw;
    margin-top: 5vh;
  }

  .gamemode-buttons-container {
    flex-direction: column;
    width: 90vw;
  }

  .gamemode-component {
    width: 100%;
  }

  .gamemode-icon {
    width: 10vw;
    height: 10vw;
  }

  .gamemode-title {
    font-size: clamp(18px, 5vw, 30px);
  }

  .gamemode-description {
    font-size: clamp(10px, 3vw, 18px);
  }

  .main-content {
    width: 90vw;
  }

  .left-sidebar, .right-sidebar {
    display: none;
  }
  .your-stats-container {
    width: 90vw;
    height: 20vh;
    margin-top: 2vh;
  }
  .streak-flame {
    height: 20vw;
  }
  .login-bar-logo {
    font-size: 2vh;
  }
  .login-text {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .login-bar-nav {
    width: 50vw;
  }
  .nav-item {
    font-size: 1vh;
    justify-content: flex-start;
    gap: 0;
  }
  .nav-svg-icon {
    margin: 0;
  }
  .ghost-search {
    width: 90vw;
  }
  .answers-list {
    width: 90vw;
  }
  .gamemode-description-icon {
    width: 5vh;
    height: 5vh;
  }
  .ranking-container {
    display: none;
  }
  .guess-ghost {
    flex-direction: column;
    align-items: center;
  }
  .guess-room-description {
    width: 90vw;
  }
  .place-answers-list {
    width: 90vw;
  }
  .guess-room {
    flex-direction: column;
    align-items: center;
  }
  .form-modal {
    width: 80vw;
    height: auto;
  }
  .input-label-group {
    gap: 0;
  }
  .form-input {
    margin-bottom: 0.3vh;
  }
  .map-container {
    width: 90vw;
    height: 50vw;
  }
  .svg-map {
    width: 70vw;
    height: auto;
  }
  .map-selector {
    width: 30vw;
    font-size: 3vw;
  }
  .map-selector-down-arrow {
    left: 15vw;
    top: 3vw;
    font-size: 3vw;
    transform: translateY(-50%);
  }
  .map-container::after {
    width: 1.5vw;
    height: 1.5vw;
    bottom: -5%;
  }
  .daily-room-img-container {
    width: 60%;
    height: 20vh;
  }
  .profile-icon {
    display: none;
  }
  .map-selector-info {
    display:none;
  }
  .hunt-threshold-title-info {
    display: none;
  }
}
