
h1, h2, h3, h4, h5, h6 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.rounded-border-primary {
    border: 1px solid #f96332;
    border-radius: 1rem;
}


.inventory-card-container {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    gap: 0.5rem;

    border-radius: 1rem;
    margin: 1.5rem;
    background-color: #6c6c6c;
}

.inventory-card {
    min-height: 5rem;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 1rem;
    padding: 1rem;
}

label input[type="radio"]:checked ~ span.card {
    outline: 4px solid rgba(255, 128, 0, 0.5);
    box-shadow: 0 0 10px 8px rgb(239, 223, 8);
    border-radius: 5px;
}

.wide {
    width: 10rem;
}

.table-too-wide th {
    /*font-size: 1rem !important;*/
}


.seed-data-card {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    border: 3px solid rgba(220, 19, 19, 0.5);
    background-color: #dac2c2;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-weight: bolder;
}