html {
    overflow: auto;
}
body {
    background-color: #000000;
    color: #00ff00;
    font-family: Consolas, monospace;
    margin: 0;
    padding: 2rem;
}
a {
    color: #00ff00;
    text-decoration: underline;
}
hr {
    border: 0;
    height: 1px;
    background: #00ff00;
    margin: 2rem 0;
}
pre {
    background: #000000;
    padding: 1rem;
    border: 1px solid #00ff00;
    overflow-x: auto;
}
.columns {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.column {
    flex: 1;
    text-align: center;
}
.container {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-area {
    width: 100%;
    display: flex;
    position: relative;
}
.status-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.visualization-container {
    margin-top: 25px;
    flex: 1;
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
svg {
    width: 100%;
    height: 100%;
    max-height: none;
}
.link {
    opacity: 0.8;
}
.node {
    transition: fill 0.3s, r 0.3s;
}
.status-panel {
    background-color: #000000;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #00ff00;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
}
.chain-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    background-color: #00ff00;
}
.pulse {
    animation: pulse-animation 1.5s infinite;
}
@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
.loading {
    text-align: center;
    padding: 5px;
    font-size: 14px;
    color: #00ff00;
    margin: 0;
}
h1 {
    color: #00ff00;
    margin: 0;
    font-size: 24px;
}
select {
    background: #000000;
    color: white;
    border: 1px solid #00ff00;
    padding: 8px;
    border-radius: 5px;
}
@media (max-width: 1000px) {
    body {
        padding: 1rem;
    }
    .content-area {
        flex-direction: column;
    }
    .status-container {
        width: 100%;
        height: auto;
        padding: 10px;
    }
    .status-panel {
        max-width: 100%;
        margin: 0 auto;
    }
    .visualization-container {
        width: 100%;
        height: calc(100vh - 150px);
    }
}
@media (max-width: 600px) {
    h1 {
        font-size: 18px;
    }
    .status-panel {
        font-size: 14px;
        padding: 10px;
    }
    .loading {
        font-size: 12px;
    }
    .visualization-container {
        width: 100%;
        height: calc(100vh - 160px);
        margin-top: 15px;
    }
}
#latest-info {
    margin-bottom: 1rem;
    min-height: 1.5rem;
}
