/*---------------------------
在庫リストのレイアウト調整
---------------------------*/

.search-wrapper {
	display:flex;
	flex-wrap:wrap;
	gap:15px;
	align-items:center;
}

#makerFilter {
	display:inline-block;
	    min-width: 200px;
    border: solid 1px;
    border-radius: 6px;
    padding: 7px;
}
#searchInput {
	display:inline-block;
	 min-width: 320px;
    border: solid 1px;
    border-radius: 6px;
    padding: 4px 7px;
    background-color: #fff;

}
.checkbox-label {
	min-width:200px;
	display:inline-block;
}

.inventory-table-container {
    margin-top: 20px;
    overflow-x: auto;
}

.inventory-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.inventory-table th,
.inventory-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.inventory-table th {
  
    font-weight: bold;
}

.no-data {
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    color: #666;
}

.inventory-note{
  white-space: pre-line;
}