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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: aliceblue;
    color: #212529;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#network {
    width: 100%;
    height: 100%;
    background-color: aliceblue;
}

.title {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 700;
    color: #1a3a6c;
    background-color: rgba(240, 248, 255, 0.92);
    padding: 4px 14px;
    border-radius: 6px;
    z-index: 10;
    white-space: nowrap;
}

.right-panel {
    position: absolute;
    top: 50px;
    right: 10px;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.scenario-selector {
    background-color: rgba(255, 255, 255, 0.97);
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
}

.scenario-selector label {
    font-size: 13px;
}

.scenario-selector select {
    flex: 1;
    padding: 5px 8px;
    font-size: 13px;
    border: 1px solid #adb5bd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

.info-panel {
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    overflow: hidden;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background-color: #f1f3f5;
    border-bottom: 1px solid #dee2e6;
}

.info-swatch {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #495057;
    background-color: #ced4da;
    flex-shrink: 0;
}

.info-title {
    font-size: 14px;
    font-weight: 700;
    color: #212529;
}

.info-body {
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.5;
}

.info-body p {
    margin-bottom: 8px;
}

.info-body p:last-child {
    margin-bottom: 0;
}

.info-body .info-hint {
    color: #6c757d;
    font-style: italic;
}

.info-body .info-label {
    font-weight: 700;
    color: #495057;
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.info-body .what-breaks {
    background-color: #fff8e1;
    border-left: 3px solid #ffb300;
    padding: 6px 8px;
    border-radius: 3px;
    margin-top: 6px;
}

@media (max-width: 720px) {
    .right-panel {
        width: 220px;
    }
    .title {
        font-size: 14px;
        max-width: calc(100% - 250px);
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
