

  table.maptable {
      
    border-collapse: collapse;
    padding: 0;
    margin: 0 auto;
  }

  table.maptable th,
  td {
    padding: 0;
    margin: 0;
    border: 1px solid #000;

  }

  table.maptable td {
    width: 96px;
    height: 96px;
    text-align: center;
    font-size: 24px;


  }

  table.maptable td a {
    display: block;


  }









  .topnav {
    overflow: hidden;
    background-color: #333;
  }

  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }

  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }

  .topnav a.active {
    background-color: #04AA6D;
    color: white;
  }

  .topnav .icon {
    display: none;
  }

  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {
      display: none;
    }

    .topnav a.icon {
      float: right;
      display: block;
    }
  }

  @media screen and (max-width: 600px) {
    .topnav.responsive {
      position: relative;
    }

    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }

    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }








/* The alert message box */
.alert {
padding: 10px;
background-color: #f44336; /* Red */
color: white;
margin-bottom: 5px;
border-radius: 10px 20px;
}

.alert.success {background-color: #04AA6D;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}
.alert.notification {background-color: #006faa;}

/* The close button */
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
color: black;
}
















/* Style the buttons that are used to open and close the accordion panel */
.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 0px 18px;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
padding: 0 10px;
background-color: white;
display: none;
overflow: hidden;
}








.button-xsmall { 
          font-size: 70%; 
      } 

      .button-small { 
          font-size: 85%; 
      } 

      .button-large { 
          font-size: 110%; 
      } 

      .button-xlarge { 
          font-size: 125%; 
      } 









.progress-bar {
  height: 25px;
  background-color: #b2b2b2;
  border-radius: 10px;
  position:relative;
}

.progress {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right, #33C3F0 0%, #33C3F0 100%);
  width: 0%;
  position:relative;
}
.progress-bar center {
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  margin:auto;
}



.bg-info {
  background-color: #17a2b8!important;
}
.bg-warning {
  background-color: #ffc107!important;
}
.bg-success {
  background-color: #28a745!important;
}
.bg-danger {
  background-color: #dc3545!important;
}





.map-container {
position: relative;
width: 96px; /* Adjust as needed */
height: 96px; /* Adjust as needed */
margin: 0 auto;
padding: 0 0px;
box-sizing: border-box; }


/* Centered text */
.map-text-overlay-centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 10px;
background: #fff;
padding: 2px 2px 2px 2px;
font-family: Verdana;
z-index: 2;
}







.cell {
  padding: 0;
}



.bottom-image,
.top-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-image {
  z-index: 1; /* Ensure the top image is above the bottom image */
}

.map-container a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit text color */
}









.inline {
  display: inline;
}

.link-button {
  background: none;
  border: none;
  color: white;
  text-decoration: none;
  cursor: pointer;

  margin-bottom: 0px;
}
.link-button:focus {
  outline: none;
}
.link-button:active {
  color:white;
}


.link-info {
  background: none;
  border: none;
  color: black;
  text-decoration: none;
  cursor: pointer;

  margin-bottom: 0px;
}
.link-info:focus {
  outline: none;
}
.link-info:active {
  color:black;
}




.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.accept-cookies {
  background-color: #4CAF50;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}











.image-container {
  position: relative;
  display: inline-block; /* Ensures the container only takes the necessary width and height */
  overflow: hidden; /* Prevent overflow */
}

.count {
  position: absolute;
  top: 5px; /* Adjust as needed */
  right: 5px; /* Adjust as needed */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  color: white;
  padding: 3px 5px; /* Adjust padding as needed */
  border-radius: 50%; /* Makes the count circular */
  font-size: 14px; /* Adjust font size as needed */
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.image-container:hover {
  transform: scale(1.1); /* Scale up the image on hover */
}


.image-container:hover .count {
  background-color: rgba(0, 0, 0, 0.8); /* Darken the counter background on hover */
}


.equip-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Expand across the whole width of the image */
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 3px;
  font-size: 10px;
  text-align: center; /* Center the text horizontally */
  box-sizing: border-box; /* Include padding in width calculation */
  font-family: Arial, Helvetica, sans-serif;
}



.unequip-button-link {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: #33C3F0;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
  border-color: #33C3F0;
}

.unequip-button-link:hover {
  background-color: #1EAEDB;
  color: #fff;
}