body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  background-color: #121212;
}

html {
  scrollbar-color: #777 #555;
}

  /* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #5a5959;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #222222;
}
  
 
  
  /* ---------------------------הסדרות למטה------------------- */

  .movie-button {
    /*margin-left: 14px;*/
    margin-top: 5px;
    display: inline-block;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    padding: 10px;
    width: 200px;
    text-align: center;
    transition: background-color 1.13s ease;
  }
  
  .movie-button:hover {
    background-color: #444;
    transform: scale(1.2);
    transition: transform 1.0s ease;
    z-index: 5;
  }
  
  .movie-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .movie-info {
    margin-top: 5px;
  }

  .movie-title-show {
    font-size: 18px;
    margin: 0;
    color: #ffffff;
  }
  
  .movie-title {
    font-size: 18px;
    margin: 0;
    background-color: #141414;
    color: #ffffff;
  }
  
  .movie-details {
    font-size: 14px;
    margin: 0;
    background-color: #141414;
    padding: 10px;
    color: #ffffff;
  }
  /* ---------------------------הסדרות המומלצות------------------ */

  .showcase {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .showcase-title {
    font-size: 34px;
    margin: 0;
    margin-bottom: 20px;
  }
  
  .movie-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .movie-item {
    margin: 10px;
    width: 300px;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  .movie-item.show {
    opacity: 1;
  }
  
  .movie-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    
  }

  .movie-item img:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
    z-index: 5;
  }

  .movie-title-show {
    font-size: 22px;
    margin: 14px 0;
  }
  
  .movie-title {
    font-size: 22px;
    margin: 14px 0;
  }
  
  /*.showcase-button {
    display: none;
    padding: 10px 20px;
    background-color: red;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .showcase-button.show {
    display: inline-block;
  }
  
  .showcase-button:hover {
    background-color: darkred;
  }
  
  .showcase-button:focus {
    outline: none;
  }
  */









  /* ------------------------------------------------------- */






  