.error-code {
    font-family: 'Fira Code', monospace;
    background: rgba(255, 245, 245, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    color: #fc8181;
    font-weight: 600;
    border: 1px solid rgba(252, 129, 129, 0.3);
    display: inline-block;
}

a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}