.searchPopup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
  
.search-popup-content {
  background-color: whitesmoke;
  margin: 15% auto;
  padding: 25px;
  width: 50%;
  border-radius: 15px;
  backdrop-filter: blur(10px);

}

#search-popular-stocks{
  margin: 6% 0 4% 0;
  justify-content: center;

}

#search-popular-stocks h4{
  text-align: center;
}


.search-popup-content hr{
    border: 1px solid lightgrey;
}

.search-popup-content button{
    background-color: black !important;
    color: black;
}
  
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
  

.search-stock-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: space-around;
    cursor: pointer;
  }
  
  .search-stock {
    flex-basis: calc(20% - 16px);
    font-size: 12px;
    padding: 5px 0;
    border: 2px solid lightgrey;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  
  .search-stock:hover {
    background-color: rgba(0, 0, 0, 0.1);

  }
  
  .stockLogo {
    height: 25px;
    width: 25%;
    object-fit: contain;
  }
  

  #analyze-button {
    padding: 0;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 20%;
    margin-left: 10px;
  }
  
  #analyze-button:hover{
    background-color: rgba(0, 0, 0, 0.8) !important;
  
  }

  
#stock-input[type="text"] {
    width: 80%;
    padding: 10px 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid lightgrey;
    border-radius: 5px;
    color: grey;
  }