.card-info-style {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9f9;
}

.total-quantity-style {
    font-weight: bold;
}

.bacteria-breeding-success {
    color: green;
    font-size: 20px;
    font-weight: bold;
}

.hakkou-card-status {
    color: #333;
}

.column-item {
    display: flex;
    justify-content: space-between;
}

.column-item label,
.column-item input,
.column-item span {
    min-width: calc(50% - 10px);  /* 幅を50%に設定して、少しのマージンを除く */
}

/* メディアクエリ: 画面幅が600px以下のとき */
@media only screen and (max-width: 600px) {
    .column-item label,
    .column-item input,
    .column-item span {
        min-width: 50%;  /* 画面幅が狭いときは50%の幅にする */
    }
}
fieldset {
    border: 2px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}

legend {
    padding: 0 10px;
}