
/**
* ! Changing default styles of the browser
**/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: black;
    font-family: sans-serif;
  }
  
  i {
    cursor: pointer;
  }
  
  a {
    text-decoration: none;
    color: white;
  }
  
  

  /**
  * ! style rules for label and some buttons
  **/
  
  .text-center {
    text-align: center;
    margin-bottom: 20px;
    color: white;
  }
  
  .HomeBtn,
  .checkout,
  .removeAll {
    color: white;
    border: none;
    padding: 6px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
  }

  .HomeBtn{
    font-size: 20px;
    background-color: palevioletred;
    text-shadow: 2px 2px 4px #000000, -2px -2px 4px black;
    border: solid 2px white;
    border-radius: 30%;
    box-shadow: 2px 2px 4px white, -2px -2px 4px white;
  }

    .HomeBtn:hover{
    background-color: white;
    color: palevioletred;
    text-shadow: 2px 2px 4px #000000, -2px -2px 4px black;
    border: solid 2px palevioletred;
    transition: ease .5s;
    cursor: url(images/DL4.png), pointer;
    box-shadow: 2px 2px 4px palevioletred, -2px -2px 4px palevioletred;
    transition: ease .5s;
}
  
  .checkout {
    background-color: green;
  }
  .removeAll {
    background-color: red;
  }
  .bi-x-lg {
    color: red;
    font-weight: bold;
  }
  
  /**
  * ! style rules for shopping-cart
  **/

  .shopping-cart {
    display: grid;
    grid-template-columns: repeat(1, 320px);
    justify-content: center;
    gap: 15px;
  }
  
  /**
  * ! style rules for cart-item
  **/

  .container-scrollable {
    height: 50vh; /* adjust to the desired height */
    overflow-y: scroll;
  }
  
  .cart-item {
    margin-top: 5px;
    border-radius: 5px;
    display: flex;
    background-color: black;
    color: white;
    box-shadow: 2px 2px 4px palevioletred, -2px -2px 4px palevioletred;
  }
  
  .title-price-x {
    width: 195px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 2px solid red; */
  }
  
  .title-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
  }
  
  .cart-item-price {
    background-color: #212529;
    color: white;
    border-radius: 4px;
    padding: 3px 6px;
  }

  .buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    font-size: 20px;
  }