.modal {
    transition: opacity 0.25s ease;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    
}
  
.modal-active {
    display: block;
    
}

.modal-container {
    position: relative;
    margin: auto;
    max-width: 100%;
    height: 500px;
    overflow-y: auto;
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(84, 74, 74, 0.2);
}
.modal-content{
    border: none;
}

.modal-search-input {
    width: 100%;
    padding: 0 10px;
    border: 2px solid #fff;
    border-radius: 0px 10px 10px 0px;
    border-left: none;
    outline: none;
    font-size: 14px;
    color: #0077d5;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Add this line for shadow */
}

.modal-search-button {
    text-align: center;
    height: 51px;
    width: 80px;
    outline: none;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 10px 0px 0px 10px;
    border-left: none;
    background: none;
    font-size: 20px;
    border-left: 2px solid #fff;
    justify-content: center;
    background-color: #0077d5;
}

.modal-search-button i{
    color: #fff !important;
}


#searchResults {
    display: none;
}


.item-thumbnail {
    width: 45px; 
    height: 45px;
    margin-left: 20px; 
}

.scroll-box {
    height: 300px; 
    overflow-y: scroll;
    border-top: 1px solid #ccc;
    padding: 10px; 
}