/**
 * Roadmap #9 — workspace card thumbnails + import/export action row.
 * Lives in its own stylesheet to keep the main app stylesheet untouched.
 */
.td-vip-workspace-item {
    display: grid;
    grid-template-columns: 84px 1fr auto;
    grid-gap: 10px;
    align-items: center;
}
.td-vip-workspace-item-thumb {
    width: 84px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(99, 102, 241, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4338ca;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
}
.td-vip-workspace-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.td-vip-workspace-item-thumb--empty {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(99, 102, 241, 0.05));
}

.td-vip-workspace-actions--io {
    margin-top: 6px;
    border-top: 1px dashed rgba(99, 102, 241, 0.18);
    padding-top: 8px;
}
.td-vip-workspace-import-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.td-vip-workspace-import-label:focus-within {
    outline: 2px solid rgba(99, 102, 241, 0.5);
    outline-offset: 2px;
}

/* Night-mode adjustments */
body.td-vip-body.is-night-mode .td-vip-workspace-item-thumb {
    background: rgba(67, 56, 202, 0.25);
    color: #c7d2fe;
}
body.td-vip-body.is-night-mode .td-vip-workspace-item-thumb--empty {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(67, 56, 202, 0.15));
}
body.td-vip-body.is-night-mode .td-vip-workspace-actions--io {
    border-top-color: rgba(99, 102, 241, 0.35);
}
