/* OW Kundportal v2 — Workshops list (views/my_projects.php). Components live in ../portal.css. */

/* Name + type tags in one cell */
body.customers .pt-ws-table .pt-ws-name { font-weight: 500; }
body.customers .pt-ws-table .pt-ws-tags { display: inline-flex; flex-wrap: wrap; gap: 4px; margin-left: 8px; vertical-align: middle; }
body.customers .pt-ws-table .pt-ws-tags .pt-badge { font-weight: 500; }

/* Trailing "open" link: 40px tap target without growing the 44px row */
body.customers .pt-ws-table .pt-ws-open {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; margin: -10px -12px -10px 0;
    border-radius: var(--pt-radius-sm); color: var(--pt-muted); font-size: 12px;
}
body.customers .pt-ws-table .pt-ws-open:hover,
body.customers .pt-ws-table tr:hover .pt-ws-open { color: var(--pt-accent); background: var(--pt-accent-soft); }

@media (max-width: 767px) {
    body.customers .pt-ws-table .pt-ws-tags { display: flex; margin: 4px 0 0; }
}
