/* Parent container for equipment grid */
.equipment-container {
	display: flex;
	flex-direction: column;
	border: 1px solid #000;
	align-items: center;
	width: max-content;
}

/* Container styled as a grid */
.equipment-grid {
	display: grid;
    row-gap: 1px;
	column-gap: 1px;
    background-color: #fff;
    width: max-content; /* shrink to content */
}

/* Each cell */
.equipment-cell {
    width: 50px;
    height: 30px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    user-select: none;
}
