body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    background-color: #f8f9fa;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #343a40;
  }
  
  #cart-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .cart-item:hover {
    transform: translateY(-3px);
  }
  
  .cart-item div {
    flex: 1;
    text-align: center;
  }
  
  .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .quantity button {
    margin: 0 5px;
    padding: 6px 12px;
    font-size: 16px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .quantity button:hover {
    background-color: #0056b3;
  }
  
  .quantity span {
    min-width: 30px;
    display: inline-block;
  }
  
  .total {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 22px;
    font-weight: bold;
    text-align: right;
    color: #28a745;
  }
  
  .empty {
    text-align: center;
    margin-top: 50px;
    font-size: 20px;
    color: #6c757d;
  }
  .bottom-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.bottom-buttons .btn {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.bottom-buttons .btn:hover {
    background-color: #ffcc00;
    color: #333;
    transform: scale(1.1);
}
 