body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f7f9;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

h1,
h2,
h3 {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-top: 0;
}

h2 {
    font-size: 1.2em;
    word-break: break-all;
    margin-top: 20px;
}

h3 {
    font-size: 1.1em;
    margin-top: 30px;
    border-bottom-style: dashed;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th,
td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    word-break: break-all;
}

th {
    background-color: #f0f0f0;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.monospace {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    font-size: 0.85em;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.error-message {
    color: #d9534f;
}

.detail-list {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 10px 20px;
}

.detail-list dt {
    font-weight: bold;
    color: #555;
}

.detail-list dd {
    margin: 0;
    word-break: break-all;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    font-size: 0.9em;
}

pre {
    background-color: #eee;
    padding: 1em;
    border-radius: 5px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

.search-area,
.navigation {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#searchInput {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    padding: 8px 16px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 8px;
}

button:hover {
    background-color: #0056b3;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#network-info {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}