body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #eef1f5;
}

#ordersContainer {
  width: 100%;
}

.app-container {
  text-align: center;
  margin-top: 80px;
}

.title {
  font-size: 36px;
  margin-bottom: 10px;
}

.kitchen-title {
  text-align: center;
  font-size: 50px;
  margin-top: 20px;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.card {
  background: white;
  width: 250px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h2 {
  margin-bottom: 10px;
}

.pos-container {
  display: flex;
  height: 100vh;
}

.products {
  flex: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 10px;
  height: 100%;
  flex-grow: 1;
}

.product-grid button {
  font-size: 18px;
  padding: 20px;
  border-radius: 12px;
  border: none;
  background: #007bff;
  color: white;
  cursor: pointer;
  text-align: center;
  word-wrap: break-word;
  height: 100%;
}

.product-grid button:hover {
  background: #0056b3;
}

.order-panel {
  flex: 1;
  background: white;
  padding: 20px;
  border-left: 2px solid #ddd;
}

.send-btn {
  margin-top: 20px;
  padding: 15px;
  width: 100%;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  background: #2d89ef;
  color: white;
  cursor: pointer;
}

.receiver-container {
  padding: 20px;
  background: #f4f6f8;
  min-height: 100vh;
}

.orders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 30px;
}

.order-card {
  background: white;
  border-radius: 14px;
  padding: 30px;
  font-size: 24px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  min-height: 260px;
}

.order-card h3 {
  font-size: 34px;
  margin-bottom: 15px;
}

.order-card ul {
  font-size: 26px;
  margin-bottom: 15px;
}

.order-card button {
  font-size: 24px;
  padding: 14px 25px;
  background: #28a745;
  border: none;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}

.order-card button:hover {
  background: #1e7e34;
}

.order-items {
  margin: 15px 0;
}

.ready-btn {
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 8px;
  background: green;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.notification-box {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  background: #d1ecf1;
  color: #0c5460;
  font-weight: bold;
  display: none;
}

.customer-input {
  margin-bottom: 15px;
}

.customer-input input {
  padding: 10px;
  width: 80%;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 5px;
}

.category-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.category-buttons button {
  font-size: 18px;
  padding: 18px;
  border-radius: 10px;
  border: none;
  background: #fb00ff;
  color: white;
  cursor: pointer;
  text-align: center;
}

.category-buttons button:hover {
  background: #838b85;
}

.category-buttons button.active {
  background: #1b5fbf;
}

.report-container {
  padding: 30px;
}

.orders-list {
  margin-top: 20px;
}

.orders-list div {
  background: white;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.filter-bar {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-bar input {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.report-btn {
  margin-top: 10px;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: #28a745;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.print-btn {
  margin-top: 10px;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: #6f42c1;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.payment-box {
  margin-top: 15px;
}

.payment-box input {
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 5px;
}

#changeText {
  margin-top: 10px;
  font-weight: bold;
}

.quick-cash {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.quick-cash button {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  background: #17a2b8;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.quick-names {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.quick-names button {
  padding: 12px;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  background: #fff700;
  color: rgb(0, 0, 0);
  cursor: pointer;
}

.quick-names button:hover {
  background: #929292;
}

.report-title {
  text-align: center;
  font-size: 36px;
}

.report-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px;
}

.report-filters button {
  padding: 10px 20px;
  font-size: 16px;
}

.report-summary {
  text-align: center;
  margin-bottom: 20px;
}

.report-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  padding: 20px;
}

.report-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

@media print {

  .report-filters,
  .report-actions {
    display: none;
  }

  body {
    background: white;
  }

  .report-list {
    grid-template-columns: repeat(2,1fr);
  }

}

.report-header {
  text-align: center;
  margin-bottom: 20px;
}

.report-header p {
  margin: 3px;
  font-size: 14px;
}

.report-header {
  text-align: center;
  margin-bottom: 20px;
}

.business-name {
  font-size: 28px;
  font-weight: bold;
}

.report-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.report-summary {
  text-align: center;
  margin-bottom: 20px;
}

.report-list {
  max-width: 500px;
  margin: auto;
}

.report-card {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 6px 0;
}

.report-actions {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.report-actions button {
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
}

.back-btn {
  background: #444;
  color: white;
  font-size: 18px;
  padding: 12px;
  margin-bottom: 10px;
  width: 100%;
  border-radius: 8px;
}

.clear-btn {
  background: #cc0000;
  color: white;
  font-size: 16px;
  padding: 12px;
  margin-top: 10px;
  width: 100%;
  border: none;
  border-radius: 8px;
}