.movie-search-bar{
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.search-container{
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; 
}

.movie-search-bar h3{
    align-items: center;
    margin-right: 1rem;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;  
}

.movie-search-bar .form-control{
    padding: 1rem 2rem;
    font-size: 1.4rem;
    border: none;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    outline: none;
    width: 350px;    
}

.search-list{
    position: absolute;
    right:0;
    top: 100%;
    max-height: 500px;
    overflow-y: scroll;
    z-index: 10; 
}

.search-list .search-list-item{
    padding: .5rem;
    border-bottom: 1px;
    width: calc(350px-8px);
    cursor: pointer;
    transition: background-color 200ms ease;
}

.search-list .search-list-item:Hover{
    background-color: #E0DDDC;
}

.search-list-item{
    display: flex;
    align-items: center;
    background-color: #d7e0ef;
}

.search-item-thumbnail img{
    width: 40px;
    margin-right: 1rem;
}

.search-item-info h3{
    font-weight: 600;
    font-size: 1rem;
}

.search-item-info p{
    font-size: .8rem;
    margin-top: .5rem;
    font-weight: 600;
    opacity: .6;
}

.search-list::-webkit-scrollbar{
    width: 8px;
}

.search-list::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.search-list::-webkit-scrollbar-thumb{
    background-color: var(--yellow-color);
    outline: none;
    border-radius: 10px;
}

.hide-search-list{
    display: none;
}

/* End of Search */

/* Recommend Button*/

.rec-button-container{
    position: absolute;
    bottom: 1rem;
    left: .5rem;
}

.recommend-button{
    margin-bottom: 1rem;
}

/*Movie Modal Styling*/
.modal-container{
    width: 60vw;
    max-width: 1200px;
    height: 40vh;
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #d9e2f0;
    border-radius: 40px;
    z-index: 100;
}

.modal-poster{
    display: block;
    margin: auto;
    padding-left: 2rem;
}

.modal-poster img{
    width: 200px;
    border-radius: 30px;
}

.modal-info-container{
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    padding-right: 1rem;
    margin: auto;
}

.modal-info li{
    list-style-type: none;
    margin-left: -2rem;
}

.small-id{
    display: none;
}

.button-container{
   display: flex;
   flex-direction: row;
}

.user-rating-input{
    padding-bottom: 1rem;
    width: 350px;
    margin: auto;
}

.user-rating-label{
    position: relative;
    text-align: center; 
}

.small-id{
    font-size: small;
}

.user-list-container{
    z-index: -1;
    position: absolute;
    padding: 1rem;
    max-height: 75vh;
    overflow-y: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}

.user-list-container::-webkit-scrollbar {
    display: none;
}

.user-list-entry{
    display: flex;
    padding-top: .5rem;
}

.watch-list-poster img{
    display: block;
    max-width: 75px;
}

.watch-list-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.watch-list-title{
    padding-left: .5rem;
    font-weight: bold;
}

.watch-list-rating{
    padding-left: .5rem;
}

.my-list-header{
    padding-top: .5rem;
    padding-left: .5rem;
}

.hide-movie-modal{
    display: none;
}

.button-container{
    display: flex;
    flex-direction: row;
    padding-right: 5vw;
}

.button-container button{
    width: 10vw;
    max-width: 200px;
    font-size: 15px;
}

.modal-opacity{
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: black;
    opacity: .7;
}