/* Style table inline code elements to indicate they are clickable buttons */
table td code {
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(128, 128, 128, 0.2) !important;
    position: relative;
    padding: 0.2em 0.5em !important;
    display: inline-block;
}

table td code:hover {
    background-color: var(--md-primary-color--light, rgba(106, 27, 154, 0.15)) !important;
    border-color: var(--md-accent-color, #7e57c2) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(126, 87, 194, 0.15);
}

table td code:active {
    transform: translateY(0);
    box-shadow: none;
}
