.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.header {
    display: flex;
    font-size: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    margin-bottom: 10px;
    position: sticky;
}

.header a {
    text-decoration: none;
    color: rgb(1, 46, 81);
    margin-right: 10px;
}

.blurb img {
    width: 700px;
    height: auto;
}

.blurb {
    text-align: center;
    margin-bottom: 30px;
}
.blurb h1 {
    margin-bottom: 15px;
    font-size: 45px;
}
.blurb p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
}
.view-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.toggle-btn {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #f4f4f4;
    border: none;
    cursor: pointer;
}
.toggle-btn.active {
    background-color: #333;
    color: white;
}
#map {
    height: 600px;
    width: 100%;
}
#listView {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.location-card {
    border: 1px solid #ddd;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.location-card:hover {
    background-color: #f4f4f4;
}
#modalOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}
#modalOverlay.show {
    display: flex;
}
#modalContent {
    background-color: white;
    padding: 30px;
    max-width: 800px;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.image-gallery {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.gallery-image {
    width: 30%;
    height: auto;
    object-fit: cover;
}
.custom-marker-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}