@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400&display=swap');

/* ── Outer layout ─────────────────────────────────────────────────────────── */
.terranet-map-outer {
    display: flex;
    gap: 0;
    width: 100%;
    align-items: stretch;
}

.terranet-map-wrap {
    flex: 1 1 0;
    min-width: 0;
}

#terranet-map-canvas {
    width: 100%;
    min-height: 400px;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

/* ── Sidebar index ────────────────────────────────────────────────────────── */
.terranet-map-index {
    width: 260px;
    flex-shrink: 0;
    background: #0d1b2e;
    border: 1px solid #1a4f80;
    border-left: none;
    border-radius: 0 8px 8px 0;
    overflow-y: auto;
    max-height: var(--tm-map-height, 80vh);
}

.tm-index-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid #1a3a5c;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: inherit;
}

.tm-index-item:last-child {
    border-bottom: none;
}

.tm-index-item:hover,
.tm-index-item.is-active {
    background: #112644;
}

.tm-index-item__logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.tm-index-item__logo-placeholder {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #1565c0;
    border: 2px solid #90caf9;
}

.tm-index-item__title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #c9e0f5;
    line-height: 1.3;
    word-break: break-word;
}

/* ── Mobile: stack vertically ─────────────────────────────────────────────── */
@media ( max-width: 768px ) {
    .terranet-map-outer {
        flex-direction: column;
    }

    #terranet-map-canvas {
        border-radius: 8px 8px 0 0;
    }

    .terranet-map-index {
        width: 100%;
        max-height: 280px;
        border-left: 1px solid #1a4f80;
        border-top: none;
        border-radius: 0 0 8px 8px;
    }
}

/* ── Info window ──────────────────────────────────────────────────────────── */
.tm-info-window {
    max-width: 220px;
    font-family: inherit;
}

.tm-info-window img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin-bottom: 8px;
}

.tm-info-window h4 {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.3;
}

.tm-info-window a.tm-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 14px;
    background: #1565c0;
    color: #e3f2fd;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

.tm-info-window a.tm-btn:hover {
    background: #0d47a1;
}
