/* ============================================
   HTML ENCODER - TOOL-SPECIFIC STYLES
   Common styles loaded from /shared/styles/common.css
   ============================================ */

/* Reuse styles from Base64 tool */
@import url('../base64/style.css');

/* ============================================
   REFERENCE SECTION
   ============================================ */

.reference-section {
    margin-top: var(--space-6);
    padding: var(--space-4);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.reference-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.entities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-3);
}

.entity-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-3);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-base);
    text-align: center;
}

.entity-char {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.entity-code {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .entities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

