*{margin:0;padding:0;box-sizing:border-box}.app{width:100vw;height:100vh;display:flex;flex-direction:column;background-color:#f5f5f5;overflow:hidden}.header{background-color:#2c3e50;color:white;padding:20px;box-shadow:0 2px 4px rgba(0,0,0,.1)}.header-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:15px}.header h1{margin:0;font-size:24px}.data-source-toggle{display:flex;gap:0;background-color:rgba(255,255,255,.1);border-radius:6px;padding:4px}.data-source-toggle button{padding:8px 16px;background:transparent;color:white;border:none;border-radius:4px;cursor:pointer;font-size:14px;font-weight:500;transition:all .3s ease}.data-source-toggle button:hover{background-color:rgba(255,255,255,.1)}.data-source-toggle button.active{background-color:#3498db;box-shadow:0 2px 4px rgba(0,0,0,.2)}.stats{display:flex;gap:20px;font-size:14px}.stats span{background-color:rgba(255,255,255,.1);padding:5px 10px;border-radius:4px}.graph-container{flex:1;position:relative;background-color:white;min-height:0;overflow:hidden}.error-container,.loading-container{display:flex;flex-direction:column;justify-content:center;align-items:center;height:100vh;gap:20px}.loading-spinner{border:4px solid #f3f3f3;border-top-color:#3498db;border-radius:50%;width:50px;height:50px;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.error-container h2{color:#e74c3c}.error-container button{padding:10px 20px;background-color:#3498db;color:white;border:none;border-radius:4px;cursor:pointer;font-size:16px}.error-container button:hover{background-color:#2980b9}.node-details{position:absolute;top:20px;right:20px;background:white;border-radius:8px;box-shadow:0 4px 6px rgba(0,0,0,.1);width:300px;max-height:80vh;overflow:auto}.node-details-header{display:flex;justify-content:space-between;align-items:center;padding:15px;border-bottom:1px solid #eee;background-color:#f8f9fa;border-radius:8px 8px 0 0}.node-details-header h3{margin:0;font-size:18px}.node-details-header button{background:none;border:none;font-size:20px;cursor:pointer;color:#666}.node-details-header button:hover{color:#333}.node-details-content{padding:15px}.node-details-content p{margin:10px 0}.properties{margin-top:15px}.properties pre{background-color:#f5f5f5;padding:10px;border-radius:4px;overflow-x:auto;font-size:12px}.legend{position:absolute;top:20px;left:20px;background:white;border-radius:8px;box-shadow:0 4px 6px rgba(0,0,0,.1);padding:15px;z-index:10;min-width:150px}.legend h4{margin:0 0 10px;font-size:16px;color:#333}.legend-item{display:flex;align-items:center;margin-bottom:8px;gap:10px}.legend-color{width:16px;height:16px;border-radius:50%;flex-shrink:0}.legend-label{font-size:14px;color:#555}.minimap{position:absolute;bottom:20px;right:20px;background:white;border-radius:8px;box-shadow:0 4px 6px rgba(0,0,0,.1);padding:10px;z-index:10;border:2px solid #e0e0e0}.minimap canvas{display:block;border-radius:4px}