* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Navbar */
.navbar {
    background: #242424;
    color: white;
    padding: 0 2rem;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    border-bottom: 1px solid #333;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f0f0f0;
}

.navbar-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.navbar-menu a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.navbar-menu a:hover {
    color: #3498db;
}

/* Container */
.container {
    min-height: calc(100vh - 60px);
}

/* Map Page */
.map-container {
    position: relative;
    height: calc(100vh - 60px);
}

#map {
    width: 100%;
    height: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-menu {
        gap: 1rem;
    }

    .navbar-menu a {
        font-size: 0.85rem;
    }
}
