html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: system-ui, -apple-system, sans-serif;
}

.livemap-layout {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.livemap-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
    height: 56px;
    background: #1e293b;
    color: #e2e8f0;
    flex-shrink: 0;
}

.livemap-brand {
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.livemap-links {
    display: flex;
    gap: 0.25rem;
}

.livemap-links a {
    color: #94a3b8;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.15s, color 0.15s;
}

.livemap-links a:hover {
    background: #334155;
    color: #f1f5f9;
}

.livemap-links a.active {
    background: #3b82f6;
    color: #fff;
}

.livemap-main {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
}

/* Telerik Map fills container */
.map-container .k-map {
    width: 100%;
    height: 100%;
}
