html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #eff6ff;
}

.test-map-page {
    width: 100vw;
    height: 100vh;
    padding: 2rem 0;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.test-map-page.is-embedded {
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    padding: 0;
    display: block;
}

#test-postal-code-map {
    width: 70vw;
    height: 70vh;
    min-width: 960px;
    min-height: 640px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.35);
}

.test-map-page.is-embedded #test-postal-code-map {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.leaflet-container {
    font-family: Arial, sans-serif;
    background: #dbeafe;
}

.test-map-toolbar {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.65rem;
    border-radius: 0.8rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
}

.test-map-toolbar button {
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.test-map-toolbar button.is-active {
    background: #1d4ed8;
    color: #fff;
    border-color: #1d4ed8;
}

.test-map-tooltip {
    min-width: 210px;
    line-height: 1.55;
}

.leaflet-tooltip {
    border: 0;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

@media (max-width: 1200px) {
    #test-postal-code-map {
        width: 88vw;
        min-width: 0;
    }
}
