.bot-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
}
.bot-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 700px;
}
.bot-table thead th {
  background: #fafafa;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #eee;
  white-space: nowrap;
}
.bot-table tbody td {
  padding: 10px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.bot-table tbody tr:hover {
  background: #fafafa;
}
.bot-code {
  color: #888;
  white-space: nowrap;
}
.bot-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bot-thumb img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
}
.bot-mrp del {
  color: #aaa;
}
.bot-price {
  font-weight: 600;
  white-space: nowrap;
}
.bot-qty-cell {
  white-space: nowrap;
}
.bot-qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: fit-content;
  overflow: hidden;
}
.bot-qty-btn {
  background: #f5f5f5;
  border: none;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.bot-qty-btn:hover {
  background: #eee;
}
.bot-qty-input {
  width: 46px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  height: 34px;
  font-size: 14px;
}
.bot-billing {
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .bot-table {
    font-size: 13px;
  }
  .bot-table thead th,
  .bot-table tbody td {
    padding: 10px 10px;
  }
}