
.search-results{
    margin:auto;
    max-height: 60vh; /* Adjust based on desired row height */
    overflow-y: auto;
}
.overlay{
    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;
  }
  
  .search-container {
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1001;
  }
  .movie-list .search-btn {
    position: fixed;
    top: 50%;
    right: 0;
    background-color: transparent;
    border: none;
    font-size: 44px;
    cursor: pointer;
    color: #fff;
  }
  .movie-view .search-btn{
    position: fixed;
    top: 20%;
    right: 0;
    background-color: transparent;
    border: none;
    font-size: 44px;
    cursor: pointer;
    color: #fff;
  }
  
  
  .search-dialog {
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .dialog-header {
    position: relative;
    height: 30px;
    cursor: move;
  }
  
  .close-btn {
    position: absolute;
    top: -10px;
    right: 0px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }
  
  .search-input, .search-select {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    padding: 10px 0px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f4f4f4;
    color: #0d0d0d;
  }
  
  .search-results {
    margin-top: 10px;
  }
  
  .search-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .actor-checkbox {
    display: flex;
    align-items: center;
    margin: 0;
  }
  
.expand-btn {
    color: white;
    background-color: rgba(63, 170, 231, 0.85);
    border: none;
    cursor: pointer;
    margin-left: 10px;  
    margin-bottom: 10px;
  }
  
.toggle-info {
    margin: 0px 13px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    font-size: 18px;
    color: white;
}