.members-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.9rem;
}

.members-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid var(--border);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.members-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

.members-table tr:hover {
    background: rgba(168, 85, 247, 0.05);
}

.type-col {
    color: var(--text-muted);
}

.member-col {
    color: var(--text-primary);
}

.offset-col {
    color: var(--accent);
    font-family: monospace;
}

.size-col {
    color: var(--text-muted);
    font-family: monospace;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    margin-left: 8px;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.copy-btn:hover {
    color: var(--accent);
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    flex-direction: column;
    gap: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.row-highlight {
    background: rgba(216, 180, 254, 0.2) !important;
    transition: background 0.5s;
}

.code-section {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.code-section h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: var(--text-primary);
}

.code-block {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0;
    white-space: pre;
    overflow-x: auto;
    font-weight: 500;
}

.code-block .keyword {
    color: #d8b4fe;
}

.code-block .type {
    color: #5eead4;
}

.code-block .function {
    color: #fcd34d;
}

.code-block .param {
    color: #f1f5f9;
}

.code-block .number {
    color: #f9a8d4;
}