﻿.card {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    border: 1px solid var(--item-border-color);
    border-radius: var(--item-border-radius);
    padding: 10px;
}

.item-cell:not(.no-label)::before {
    content: attr(data-cell-label);
    font-weight: bold;
}

.item-actions {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: left;
    align-content: center;
    align-items: center;
}

.item-action-button {
    width: 30px;
    height: 30px;
    border: 0;
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    cursor: pointer;
}

.item-action-button svg {
    width: 16px;
    height: 16px;
}
