#map {
    position: absolute; 
    top: 0; 
    bottom: 0; 
    left: 0;
    right: 0;
    width: 100%;
  }

  .map-hidden {
    visibility: hidden;
  }

    .layer {
    top: 0px;
    width: 100vw;
    min-height: 100%;
    padding: 0px;
    }

    #container {
      position: relative;
      width:  100vw;
      min-height: 100%;
      margin: 0px;
      padding: 0px;
    }

    .marker {
      background-image: url('/assets/img/map\ pin.png');
      background-size: contain;
      background-repeat: no-repeat;
      background-size: 70%;
      width: 50px;
      height: 50px;
      cursor: pointer;
    }

    .current_marker {
      background-image: url('/assets/img/map\ pin.png');
      background-size: contain;
      background-repeat: no-repeat;
      background-size: 70%;
      width: 50px;
      height: 50px;
      cursor: pointer;
      filter: hue-rotate(180deg) saturate(2);
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url(/assets/img/Background_1.svg);    
      color: #DD842C;
      font-family: "Montserrat";
      font-weight: bold;
      font-size: small;
    }
    .markerContainer {
      background-color: transparent;
      display: flex;      
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: auto;
      margin: 15% auto; /* 15% from the top and centered */
  }
  @media (max-width: 600px) {
    .markerContainer {
        width: 100%; /* Adjust width for smaller screens */
        margin: 30% auto; /* Adjust margin for smaller screens */
    }
    
}
  
  /* File input styling */
  #fileInput {
      margin-top: 10px;
  }
  
  /* Upload button styling */
  button {
      margin-top: 10px;
  }  

  img{
    width: 150px;
  }

  .loginContainer{
    display: grid;
    align-items: center;
    justify-items: center;
    margin-top: 50px;
  }
  .formStyle{
    width: 80%;
  }

  .formStyle input[type=text]{
    width: 100%;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .introButton {
    position: fixed;
    z-index: 1001;
    width: 50px;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border: 2px solid #5CB2AD;
    color: #5CB2AD;
    border-radius: 10px;
    margin: 4px 2px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold
  }

  .puzzleButton{
    background-color: white;
    border: 2px solid #5CB2AD;
    color: #5CB2AD;
    border-radius: 10px;
    margin: 4px 2px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
  }

  select{
    width: 100%;
    padding: 12px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    background-color: #f1f1f1;
  }
  .backg{
    background-image: url(/assets/img/Background_1.svg);    
    color: #DD842C;
    font-family: "Montserrat";
    font-weight: bold;
    font-size: small;
  }

  .readyPar{
    position: fixed;
    bottom: 50px;
    right: 40px;
    left: auto;
    padding-left: 40px;
  }

  .rulesModal{
    display: none;
    position: fixed;
    background-image: url(/assets/img/Background_2.svg);
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
  }

  .modal-content{
    margin: 15% auto;
    width: 80%;
  }

  .stroke{
    font-family: "Poppins";
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #DD842C; 
  }

  .ruleTitle{
    font-weight: bolder;
    font-size: large;
  }

  .ruleText{
    color: black;
  }

  .ruleBold{
    color: #DD842C;
    font-weight: bolder;
  }

.marker-button{
  background-color: #DD842C;
  border: transparent;
  color: white;
  border-radius: 5px;
}

.upload-button {
  display: inline-block;
  background-color: white;
  border: 2px solid #5CB2AD;
  color: #5CB2AD;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  width: 200px;
  height: auto;
}

.upload-button i {
  margin-right: 8px;
  margin-left: 8px;
}


.upload-text{
  color: black;
  text-align: center;
  font-size: large;
  margin-bottom: 30px;
}

h1{
  font-size:x-large;
  font-weight: bolder;
  text-align: center;
}

.close{
  background-color: transparent;
  color: #5CB2AD;
  border: transparent;
  font-size: 35px;
  position: fixed;
  top: 5%;
  right: 10%;
  cursor: pointer;
}

.upload-button-button{
  width: 100%;
}
table{
  width: 75%;
}

td, th{
  border-radius: 15px;
  background-color: #EABD91;
  padding: 8px;
  color: black;
}

th{
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #EBCAAA;
  color: black;
  border-radius: 5px;
  border: 1px solid black;
}


.table-container{
  display: flex;
  justify-content: center;
  justify-items: center;  
}

.puzzleContainer{
  display: grid;
  align-items: center;
  justify-items: center;
  margin-top: 50px;
}

.imgPuzzle{
  width: 80%;
  max-width: 500px;
}

.input-field{
  font-size: large;
  font-weight: bold;
}

.imgExample{
  width: 75%;
  max-width: 500px;
  margin: 20px;
  align-self: center;
}

.puzzleModal{
  display: none;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/img/Background_1.svg);    
  color: #DD842C;
  align-items: center;
  justify-items: center;
  align-content: center;
  overflow: auto;
}

.loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.readyButton {
  position: fixed;
  width: 50px;
  bottom: 20px;
  right: 20px;
  background-color: white;
  border: 2px solid #5CB2AD;
  color: #5CB2AD;
  border-radius: 10px;
  margin: 4px 2px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold
}