table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

th, td {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
}

th {
    background-color: #333;
    color: white;
}

/* Utility classes for reusable styles */
.note {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary);
    padding: 1rem;
    margin: 1rem 0;
}

.note::before {
    content: "📝";
    margin-right: 0.5rem;
}

figure {
    margin: 1.5rem 0;
}

figure img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-light);
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

figcaption {
    margin-top: 0.5rem;
    color: var(--text-muted-light);
    font-size: 0.9rem;
}

figcaption::before {
    content: "🖼️";
    margin-right: 0.5rem;
}

kbd {
    background-color: #ffe066;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
}

@media (max-width: 768px) {
    th, td { padding: 0.5rem; font-size: 0.9rem; }
    .note { font-size: 0.9rem; }
}