body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #fafafa;
    color: #333;
}

/* === Navbar === */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.navbar a:hover {
    color: #4CAF50;
}

header {
    text-align: center;
    padding: 20px;
}

#map {
    height: 60vh;
    margin: 20px auto;
    max-width: 960px;
    border: 1px solid #cdcdcd;
}

.info {
    max-width: 960px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

/* === Modal styles === */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
}
.modal img {
    max-width: 100%;
    height: auto;
    margin-bottom: 8px;
}
.modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1.2em;
    cursor: pointer;
    border: none;
    background: none;
}
.modal-header {
    margin-bottom: 12px;
    font-size: 1.4em;
    font-weight: bold;
}
.modal-img-block {
    margin-bottom: 16px;
}
