.btn-container{
    width: 100%;
    display: flex;
    justify-content: right;
    padding: 10px 20px;
}
#confirm-purchase {
    display: none;
    z-index: 1000;
    background: green;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .cart-items{
    overflow-y: auto;
    min-height: 300px;
    max-height: 60vh;
    height: 55vh;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    /* padding: 10px; */
  }
  .cart-card {
    display: flex;
    gap: 15px;
    margin: 0 0;
    border: 1px solid #ccc;
    padding: 10px;
    align-items: center;
    width: 100%;
    font-size: 12px;
  }

  .cart-card img {
    min-width: 120px;
    min-height: 120px;
    border-radius: 5px;
    height: 120px;
    width: 120px;
  }

  .cart-card #remove-btn {
    margin-top: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 150px;
  }
  .quantity-container{
    display: flex;
    width: fit-content;
    border-radius: 5px;
    overflow: hidden;
    border: 1px #534a4a solid;
  }

.quantity-container button {
    background: #333;
    color: #fff;
    border: none;
    padding: 3px 10px;
    font-size: 15px;
    cursor: pointer;
  }

  .quantity-container span {
    padding: 0 10px;
    font-size: 16px;
  } 

#message-container {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 10000;
}
.msg {
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
}
.msg.info { background: #2196F3; }
.msg.success { background: #4CAF50; }
.msg.error { background: #f44336; }
