/* PodBlock shared styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    font-family:
        ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas,
        monospace;
    max-width: 720px;
    margin: 60px auto;
    padding: 0 24px;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
}
h1 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}
h2 {
    font-size: 0.95rem;
    color: #555;
    margin-top: 32px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
p {
    color: #444;
    font-size: 0.9rem;
    margin-top: 4px;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
th {
    text-align: left;
    padding: 6px 12px;
    color: #666;
    font-weight: 500;
    border-bottom: 1px solid #e5e5e5;
}
td {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
}
td:first-child {
    color: #0550ae;
    font-weight: 600;
}
code {
    background: #f6f6f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875rem;
}
a {
    color: #0550ae;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
    body { color: #e6e6e6; background: #0d1117; }
    h2 { color: #8b949e; }
    p { color: #b0b8c1; }
    th { color: #8b949e; border-bottom-color: #30363d; }
    td { border-bottom-color: #21262d; }
    td:first-child { color: #58a6ff; }
    code { background: #161b22; color: #e6e6e6; }
    a { color: #58a6ff; }
}
