﻿.hazmatboxwrapper {
    display: grid;
    grid-auto-flow: column; /* Ensures items are placed in a row */
    grid-template-columns: repeat(auto-fit, minmax(var(--width), auto)); /* Dynamic columns */
    gap: 0px;
    background-color: white;
    color: white;
    width: max-content; /* Ensures the wrapper only takes as much space as needed */
}

.hazmatbox {
    border: 1px thin #000000;
}
