html, body {
    margin: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    color: white;
    padding: 0.5em 1em;
}

.navbar-title {
    font-size: 1.2em;
    font-weight: bold;
}

.navbar-links a {
    margin-left: 1em;
    color: #ddd;
    text-decoration: none;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: #fff;
}

.page-section {
    flex: 1;
    display: flex;
}

#description-section {
    margin-left: 10px;
}

#map {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.map-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid rgba(0,0,0,0.2);
    background-clip: padding-box;
    font-size: 0.9em;
    max-width: 250px;
    z-index: 1001;
}

.map-controls form {
    margin-bottom: 0.8em;
}

.map-controls select,
.map-controls button {
    padding: 0.3em 0.5em;
    margin-top: 0.3em;
    width: 100%;
}

.tag-copy {
    text-decoration: underline;
}

#tiny-toast-wrap {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.tiny-toast {
    pointer-events: auto;
    min-width: 120px;
    max-width: 80vw;
    padding: 10px 14px;
    background: #222;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    font: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease;
}
.tiny-toast.show {
    opacity: 1;
    transform: translateY(0);
}