@import "./common.css";
h1 {
    color: #333;
    text-align: center;
}
.network-container {
    width: 100%;
    height: 600px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    position: relative;
}
.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
}
.error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #e74c3c;
}
.tooltip {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    pointer-events: none;
    font-size: 12px;
    z-index: 10;
    max-width: 300px;
}
.controls {
    margin-top: 20px;
    text-align: center;
}
.controls button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
}
.controls button:hover {
    background-color: #2980b9;
}
.pubkey-input {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    margin: 0 auto;
    display: block;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.back-button {
    margin-bottom: 20px;
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}
.back-button:hover {
    background-color: #2980b9;
}