﻿.collection-item-grid {
    display: grid;
    grid-template-columns: [head] 2rem [label] auto [icons] auto [tail] 6rem;
    grid-template-rows: [item] auto;
    grid-template-areas:"head label icons tail";
    column-gap: .5rem;
    border-bottom: 2px solid var(--v-grey);
    padding-bottom: 1rem;
    margin-top: 1rem;
}

.collection-item-head {
    grid-area: head;
    align-self: center;
    justify-self: center;
}

.collection-item-label {
    grid-area: label;
    justify-self: stretch;
}

.collection-item-icons {
    grid-area: icons;
    justify-self: center;
    align-self: center;
}

.collection-item-tail {
    grid-area: tail;
    justify-self: end;
    align-self: center;    
}

.collection-item-button-spacer {
    display: inline-block;
    width: 1.25rem;
    min-height: 1rem;
}
