.overlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
.cart-icon {
    position: relative;
    display: inline-block;
  }

  .cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px;
    font-size: 12px;
    display: none;
  }

  .add-to-cart {
    cursor: pointer;
    color: green;
    font-size: 26px;
    text-decoration: none;
  }
  .add-to-cart:hover {
    color: darkgreen; /* Đổi màu khi hover */
  }
  .dialog {
    background: rgba(34, 34, 34, 0.9); /* Màu #222 nhưng trong suốt */
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
    overflow: auto;
    max-height: 768px;
  }

  .dialog button {
    margin-top: 10px;
    margin-bottom: 40px;
    padding: 10px;
    background: #444;
    border: none;
    color: white;
    cursor: pointer;
  }
  .delete-icon {
    cursor: pointer;
    z-index: 1;
    display: block;
    text-align: right;
    position: absolute;
    background-color: #222;
    color: red;
    top:0px;
    right: 0px;
}
.movie-list-cart {
    text-align: left;
}
.cart-container{
    width:230px;
    height:350px;
    display: inline-block;
    margin: 10px;
    background-color: #333;
    color:#fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 1px;
    position: relative;

}
.cart-container>a>.movie-item {
    margin: 0px;
}

.modal-open {
    overflow: hidden;
  }
  .movie-item2 {
    margin-bottom: 10px;
}