#pos-usd-panel {
  font-family: 'Segoe UI', sans-serif;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#pos-usd-productos, #pos-usd-carrito {
  margin-top: 30px;
}
.grid-productos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.producto {
  background: #f9f9f9;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
}

.producto button {
  background: #28a745;
  color: white;
  border: none;
  padding: 8px 12px;
  margin-top: 8px;
  cursor: pointer;
  border-radius: 5px;
}

.producto button:hover {
  background: #218838;
}
.lista-carrito {
  margin-top: 10px;
  padding: 10px;
  border: 1px dashed #ccc;
  background: #fefefe;
}

.item-carrito {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}
#pos-usd-botones {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

#pos-usd-botones button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

#vaciar-carrito-usd {
  background: #dc3545;
  color: white;
}

#finalizar-pedido-usd {
  background: #007bff;
  color: white;
}
.tabla-carritos {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.tabla-carritos th,
.tabla-carritos td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.tabla-carritos pre {
  font-size: 13px;
  white-space: pre-wrap;
}

.finalizar-carrito-externo {
  background: #28a745;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
}
