#blurr {
    display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
            backdrop-filter: blur(8px); /* Apply blur effect to background */
            z-index: 1;
}
#search_popup{
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
#search_popup input{
  display: inline-block;
  width: 200px;
  background-color:white;
  border: 1px solid gray;
  
}
#search_popup button{
  color:black;
  background-color: white;
  margin-top: 5px;
  border: 0px;
}
#search_popup h4{
  float: left;
  width: 180px;
}
#search_popup #closebtn{
  position: relative;
  margin-top: -40px;
  width: 50px;
  float: left;
  margin-left: 95%;
}
#devblurr {
  display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
          backdrop-filter: blur(8px); /* Apply blur effect to background */
          z-index: 1;
}
#device_popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  z-index: 1050;
  width: 50%;
  max-width:400px;
  padding: 20px;
  border-radius: 10px;
  color: black;
}
#device_popup h3 {
  margin-top: 0;
  width: 200px;
}
#device_popup #closebtn {
  position: absolute;
  top: 10px;
  right: -5px;
  
  cursor: pointer;
}
