/* Organizational Analytics Disciplines - MicroSim Styles */

/* ================================
   RESET AND BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: aliceblue;
    overflow: hidden;
}

/* ================================
   MAIN LAYOUT CONTAINER
   Vertical layout: graph on top, info panel below
   ================================ */
.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

/* ================================
   GRAPH AREA
   Main visualization area
   ================================ */
.graph-area {
    flex: 1;
    position: relative;
    min-height: 0;
}

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

/* ================================
   INFO PANEL (Bottom)
   Shows discipline details on hover/click
   ================================ */
.info-panel {
    height: 140px;
    min-height: 140px;
    background-color: #ffffff;
    border-top: 3px solid #303F9F;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.info-header {
    background-color: #303F9F;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.info-content {
    flex: 1;
    padding: 12px 16px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.info-prompt {
    color: #888;
    font-style: italic;
}

.info-content .discipline-name {
    font-weight: 700;
    color: #303F9F;
    font-size: 15px;
    margin-bottom: 4px;
}

.info-content .discipline-desc {
    color: #444;
    margin-bottom: 6px;
}

.info-content .discipline-example {
    color: #666;
    font-size: 13px;
    padding-left: 12px;
    border-left: 3px solid #D4880F;
}

.info-content .discipline-example strong {
    color: #D4880F;
}

/* ================================
   VIS-NETWORK NAVIGATION BUTTONS
   Style the built-in nav buttons to match theme
   ================================ */
div.vis-network div.vis-navigation div.vis-button.vis-up,
div.vis-network div.vis-navigation div.vis-button.vis-down,
div.vis-network div.vis-navigation div.vis-button.vis-left,
div.vis-network div.vis-navigation div.vis-button.vis-right,
div.vis-network div.vis-navigation div.vis-button.vis-zoomIn,
div.vis-network div.vis-navigation div.vis-button.vis-zoomOut,
div.vis-network div.vis-navigation div.vis-button.vis-zoomExtends {
    background-color: rgba(48, 63, 159, 0.15) !important;
    border-radius: 4px;
}

/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */
@media (max-width: 600px) {
    .info-panel {
        height: 120px;
        min-height: 120px;
    }

    .info-content {
        font-size: 13px;
    }
}
