body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fdfcfb, #e2d1c3);
    color: #333;
  }
  
  .order-history-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .order-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .order-card:hover {
    transform: scale(1.02);
  }
  
  .status {
    margin-top: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    animation: pulse 1.5s infinite;
  }
  
  .preparing { background: #ffde59; color: #333; }
  .enroute   { background: #4db8ff; color: white; }
  .delivered { background: #4cd137; color: white; }
  
  .back-btn {
    margin-top: 30px;
    display: inline-block;
    text-decoration: none;
    background: #ff7675;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .back-btn:hover {
    background: #d63031;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.07); }
    100% { transform: scale(1); }
  }

  