/* Card */
.order-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #eee;

  box-shadow: 0 4px 12px rgba(116, 14, 35, 0.08);
  transition: 0.2s;
}

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

/* Header */
.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* Order Type */
.order-type {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

/* Different types */
.dine-in {
  background: #f5e6e9;
  color: #740e23;
}

.takeaway {
  background: #e6f4ea;
  color: #2e7d32;
}
.drive-through {
  background: #e6f0ff;
  color: #1e5bb8;
}
/* Time */
.order-time {
  font-size: 13px;
  color: #777;
}

/* Items */
.order-items {
  margin: 10px 0;
}

.item {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 14px;
}

.qty {
  font-weight: bold;
  color: #740e23;
  min-width: 30px;
}

/* Actions */
.order-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Buttons */
.btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

/* Print */
.btn.print {
  background: #f5f5f5;
  color: #333;
}

.btn.print:hover {
  background: #e0e0e0;
}

/* Prepare */
.btn.prepare {
  background: #740e23;
  color: #fff;
  background: #f5f5f5;
  color: #740e23;
}

.btn.prepare:hover {
  background: #5c0b1c;
}


/*  animation */
@keyframes bellShake {
    0% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0); }
}

.bell-animate {
    animation: bellShake 0.6s ease;
}

@keyframes bellPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.bell-pulse {
    animation: bellPulse 1s infinite;
}

/***** *****   ****/
.status{
    padding:3px 8px;
    border-radius:12px;
    font-size:12px;
    font-weight:600;
}

.status-pending{
    background:#fff3cd;
    color:#856404;
}

.status-confirmed{
    background:#d4edda;
    color:#155724;
}

.status-rejected{
    background:#f8d7da;
    color:#721c24;
}

.confirm-action{
    color:#28a745;
    margin-left:10px;
}

.reject-action{
    color:#dc3545;
    margin-left:10px;
}

.pending-row{
    background:#fffbea;
    border-left:4px solid #e0a800;
}
.pending-row .status-pending{
    background:#ffe8a1;
    color:#7a5a00;
}

.pending-row .confirm-action{
    font-weight:600;
}

.cash-box {
    
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
}

.cash-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #eee;
}

.cash-row:last-child {
    border-bottom: 0;
}

.cash-row strong {
    font-size: 15px;
}

.cash-row.pending {
    color: #9a6700;
}

.cash-row.available {
    color: #198754;
    font-weight: 600;
}