body {
  background-color: #f8f9fa;
}

.order-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logout-btn {
  border: none;
  background: none;
  color: #dc3545;
  font-size: 1.2rem;
  cursor: pointer;
}
.order-header {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 8px;
  background: #007bff;
  color: white;
  padding: 10px 15px;
  font-weight: bold;
}
.order-cart .item-row span.prepared{
    display:none;
}
.order-cart .item-row.prepared span.prepared{
    display:block;
}
.order-cart .item-row.prepared button.mark-as-prepared{
    display:none;
}
.prepared-order-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
}
.order-title {
  font-weight: bold;
  margin-bottom: 5px;
}
.order-info {
  font-size: 0.95rem;
  color: #555;
}
.centered-text-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

/* Menu */
div.categories {
    margin-bottom: 15px;
}
div.cateogry-section {
    border: 1px solid #80808040;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
}
.card-text {
    position: relative;
    overflow: hidden;
    max-height: 1.3em;
    margin-bottom: 0;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: max-height 0.3s ease;
}
.card-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5em;
  background: linear-gradient(to top, white, transparent);
}
.card-text.expanded {
  max-height: 1000px; /* enough to show full text */
}
.card-text.expanded::after {
  display: none;
}
.close-link {
  display: none;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #007bff;
  cursor: pointer;
}
.card-body .show-close .close-link {
  display: block;
}
.instructions-area {
  display: none;
  margin-top: 10px;
}

#cart-items .empty-cart{
    display: block;
}

#cart-items.has-items li.empty-cart{
    display: none !important;
}

/* Payment Desk */
.order-detail {
  margin-bottom: 5px;
}

/* Assembly Desk */
.order-cart {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
}
.item-row {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
small.item-instructions{
    color:red;
}
.item-row:nth-child(even) {
  background-color: #f1f1f1;
}
/* Delivery Desk */
.delivered-btn {
  margin-top: 15px;
}