/* General styles */
body {
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
    color: #2d3436;
}

/* Logo and header section */
.logo img {
    height: 50px;
    object-fit: contain;
}

.info {
    font-size: 1.5rem;
    margin-left: 1rem;
    font-weight: 500;
    color: #2d3436;
    position: relative;
    top: 10px;
}
/* empty order  */
.empty-orders {
    text-align: center;
    padding: 40px 20px;
}

.empty-orders i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-orders h3 {
    color: #555;
    margin-bottom: 15px;
}

.empty-orders p {
    color: #777;
    margin-bottom: 25px;
}

.shop-now-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.shop-now-btn:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}
.empty-orders .shop-now-btn i {
    font-size: 20px;
}
/* empty order  */


/* order new  */
.nav-tabs {
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
  }

  .nav-tabs .nav-link {
    border: none;
    color: #666 !important;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease-in-out;
  }

  .nav-tabs .nav-link:hover {
    color: #746bd8 !important;
  }

  .nav-tabs .nav-link.active {
    color: #746bd8 !important;
    font-weight: 600 !important;
    border: none;
  }
  .nav-tabs .nav-link:focus{
    outline: none;
    border: none;
  }
  .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4435F1 ;
  }

  .shop-actions a {
    text-decoration: none;
    margin-right: 10px;
    color: #666;
  }

  .btn-message {
    color: #ff4d4f;
    border: 1px solid #ff4d4f;
    background: white;
  }

  .product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
  }

  .price {
    color: #ff4d4f;
    font-weight: bold;
  }

  .status {
    color: #ff4d4f;
    font-weight: bold;
    text-transform: uppercase;
  }

  .action-buttons {
    text-align: right;
    margin-top: 20px;
    padding-top: 15px;
  }

  .order-card {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .shop-info {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }

  .product-details {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .product-details:last-of-type {
    border-bottom: none;
  }

  .shop-name {
    display: flex;
    align-items: center;
    font-weight: 500;
  }

  .shop-icon {
    width: 20px;
    height: 20px;
    background-color: #666;
    border-radius: 4px;
    margin-right: 8px;
  }



  .quantity {
    color: #888;
    font-size: 0.9em;
  }

  .total-label {
    color: #666;
  }
/* order new  */
/* notification */
#notification {
    display: block;
    position: fixed;
    bottom: 90px;
    right: -300px;
    /* Start offscreen */
    background-color: #229d45;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    transition: right 0.4s ease, transform 0.4s ease;
    z-index: 1000000000;
}

#notification.hidden {
    transform: translateX(100%);
}

#notification.show {
    right: 80px;
    transform: translateX(0);
}

/* notification */