/*maplibre  website use for some of this  is https://maplibre.org/maplibre-gl-js/docs/examples/hover-styles*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body {
    margin: 0;
    padding: 0;
    background-color: beige;
    
}
#map {
    position:absolute;
    display: flex;
    flex-direction:column;
    
    top:200px;
    bottom: 50px;
    width: 80%;
    margin-left: 10;
    margin-right: 10;
}

.title {text-align: center;
    display: flex;
    flex-direction: column;
        font-size: 40;}

.lowertitle { text-align: center;
            font-size: 16}
.middle {display: flex;
justify-content: center;}

/*code from https://maplibre.org/maplibre-gl-js/docs/examples/set-popup/ */
#marker {
        background-image: url('https://maplibre.org/maplibre-gl-js/docs/assets/washington-monument.jpg');
        background-size: cover;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        cursor: pointer;
    }
 .maplibregl-popup {
    display: flex;
    max-width:auto;
    max-height: auto;
    overflow: hidden;
    }
.topnav {
  overflow: hidden;
  background-color: #333;
}

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

.topnav {
  overflow: hidden;
  background-color: rgb(206, 198, 198);
}

.topnav a {
  float: center;
  color: #050505;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
}

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

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

.footer {
  position: absolute;
  
  float: center;
  bottom: 0px;
  text-align: center;

}

/*Ahn page style*/
/* Custom button styling */
.btn-custom {
  background-color: #007bff; /* Blue background */
  color: white; /* White text */
  padding: 12px 30px; /* Larger padding for button */
  font-size: 18px; /* Larger font size */
  border-radius: 5px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

/* Hover effect for the button */
.btn-custom:hover {
  background-color: #0056b3; /* Darker blue on hover */
  text-decoration: none;
}

/* Move the button up */
.btn-container {
  margin-top: -10px; /* Adjust this value to move the button higher or lower */
}

#sample-metadata {
  margin-top: 20px;      /* Add margin for spacing */
  padding: 15px;         /* Add padding to give more breathing room */
  background-color: #f9f9f9; /* Light background for metadata */
  border-radius: 8px;    /* Rounded corners for a modern look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for better focus */
}

.card-header {
  background-color: #925796; /* Purple color for the card header */
  color: white;              /* Text color white for contrast */
  font-size: 18px;           /* Set a slightly larger font size for readability */
  font-weight: bold;         /* Bold font weight */
}
