/* layout.css */

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
}

.container-fluid {
    height: 100vh;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

.row {
    height: 100%;
}

.col-md-3 {
    height: 100%;
    overflow-y: auto;
    padding: 15px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.col-md-9 {
    height: 100%;
    padding: 0;
}

/* Old floating nav - now handled by unified header */
.floating-nav {
    display: none;
}

.nav-content {
    display: none;
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}