#priceListApp {
  font-family: sans-serif;
  color: #333;
  line-height: 1.5;
  box-sizing: border-box;
  width: 100%;
}

#priceListApp *, #priceListApp *::before, #priceListApp *::after {
  box-sizing: border-box;
}

#priceListApp .update {
  text-align: center;
  font-size: 0.85em;
  color: #666;
  margin-bottom: 15px;
}

#priceListApp .search-box {
  display: flex;
  width: 100%;
  gap: 8px;
  margin-bottom: 10px;
  align-items: stretch;
}

#priceListApp #plSearch {
  flex: 1;
  min-width: 0;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

#priceListApp #plClear {
  width: auto;
  flex-shrink: 0;
  background: #888;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0 20px;
  cursor: pointer;
  display: none;
  font-weight: bold;
  white-space: nowrap;
}

#priceListApp #plStatus {
  margin-bottom: 15px;
  font-size: 0.9em;
  padding: 10px;
  background: #f0f7ff;
  text-align: center;
  border-radius: 6px;
  display: none;
  color: #0056b3;
}

#priceListApp table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

#priceListApp th {
  background: #f4f4f4;
  font-weight: bold;
  padding: 12px 10px;
  border-bottom: 2px solid #ddd;
  text-align: left;
}

#priceListApp td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
}

#priceListApp .price, #priceListApp .sub-price {
  text-align: right;
  font-weight: bold;
  white-space: nowrap;
}

#priceListApp .jan {
  /*font-family: monospace;*/
  color: #666;
}

#priceListApp tr.hidden, #priceListApp .m-card.hidden {
  display: none;
}

#priceListApp .sp-view {
  display: none;
  flex-direction: column;
  gap: 10px;
}

#priceListApp .m-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

#priceListApp .m-head {
  font-weight: bold;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

#priceListApp .m-body {
  display: flex;
  gap: 15px;
}

#priceListApp .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#priceListApp .lbl {
  font-size: 0.7em;
  color: #999;
  text-align: right;
}

#priceListApp .val {
  font-weight: bold;
  text-align: right;
}

#priceListApp .val.green {
  color: #28a745;
}

#priceListApp .val.red {
  color: #e74c3c;
}

#priceListApp .jan-box {
  background: #f9f9f9;
  padding: 2px 12px;
  border-radius: 4px;
  font-size: 0.8em;
}

@media (max-width: 768px) {
  #priceListApp .pc-view {
    display: none;
  }
}

@media (max-width: 768px) {
  #priceListApp .sp-view {
    display: flex;
  }
}

