.giftItemRow:hover{
    background: lightblue;
}
.mythicRow{
    background: lightcoral;
}
.rareRow{
    background: lightyellow;
}

.uncommonRow{
    background: lightgrey;
}
.w-5 {
    width: 2.5em;
}
.expansionIcon {
    width: 24px;
}
.place-column {
    width: 100%;
    height: 100%;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.place-column.place-occupied {
    background-color: #d4edda;
    border-color: #28a745;
}

.place-column:hover {
    background-color: lightblue;
}

.place-column.place-occupied:hover {
    background-color: #c3e6cb;
}

