
/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
}
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
}
header {
  text-align: center;
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.logo img {
  max-width: 150px;
  height: auto;
}
.service-hours {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}
main {
  padding: 10px 0;
}
.category {
  margin-bottom: 20px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* Colores para cada sección */
.desayunos {
  background-color: #ffe6e6;
}
.bebidas {
  background-color: #e6f7ff;
}
.comidas {
  background-color: #e6ffe6;
}
.postres {
  background-color: #fff0e6;
}
.snacks {
  background-color: #f0e6ff;
}
.category h2 {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.category .item {
  margin-left: 10px; /* Margen izquierdo para los ítems */
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.category .item:last-child {
  border-bottom: none;
}
.item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
.item p {
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}
.item .price {
  font-weight: bold;
  margin-bottom: 5px;
}
.item .add-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 5px;
  border-radius: 3px;
  font-size: 14px;
  margin-top: 10px;
}
.item .add-btn:hover {
  background: #0056b3;
  cursor: pointer;
}
.item select {
  margin-bottom: 5px;
  padding: 3px;
  font-size: 14px;
}
.order-summary {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.order-summary h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}
.order-item:last-child {
  border-bottom: none;
}
.order-price {
  font-weight: bold;
}
.order-title {
  flex-grow: 1;
  text-align: right;
  margin-right: 10px;
}
.remove-item-btn {
  background: transparent;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 16px;
}
#total {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  margin-top: 10px;
}
#copy-order-btn {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 3px;
  width: 100%;
  font-size: 16px;
  margin-top: 10px;
}
#copy-order-btn:hover {
  background: #1e7e34;
  cursor: pointer;
}
footer {
  text-align: center;
  background: #fff;
  padding: 10px;
  border-top: 1px solid #ddd;
}
.order-instructions h3 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 5px;
}
.order-instructions p {
  font-size: 14px;
  color: #555;
  text-align: justify;
  
}


/* Para el dropdown de opciones */
.select2-container--default .select2-results__option {
  /*white-space: normal !important;
  word-break: break-word;  O también word-wrap: break-word; 
  word-wrap: break-word;*/
}

/* Para el área donde se muestra la selección 
.select2-container--default .select2-selection__rendered {
  white-space: normal !important;
  word-break: break-word;
}
*/
