body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 0;
  }
  
  h1, h2 {
    color: #ffa500; /* Orange */
    text-align: center;
  }
  
  .user-dashboard {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  .profile-info, .recent-purchases, .wishlist, .cart, .delivery-tracking, .preferences {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    display: flex;
    align-items: center;
    margin: 10px 0;
  }
  
  li img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  
  button {
    background-color: #ffa500;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #ffd700;
  }
  
  .progress-bar {
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .progress {
    background-color: #00bfff; /* Blue */
    color: #fff;
    text-align: center;
    padding: 5px;
    width: 0;
    transition: width 0.3s ease-in-out;
  }
  