  @import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

  body{
   margin: 0;
   background: url("https://images.pexels.com/photos/11260104/pexels-photo-11260104.jpeg");
   background-size: cover;
   font-family: "Poppins", "Noto Color Emoji", sans-serif;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   height: 100vh;
   font-size: 1.2em;
  }

  .logo{
   font-size: 2em;
   font-weight: 800;
   position: absolute;
   left: 0.5em;
   top: 0.5em;
  }

  .box{
   position: relative;
   width: 600px;
   max-width: 90%;
   margin-top: -20%;
  }

  .login{
   position: relative;
   width: 400px;
   max-width: 90%;
   margin-top: -20%;
  }

  .login input {
    margin-bottom: 1em;
  }

  input, button{
   width: 100%;
   padding: 12px;
   font-size: 1.2em;
   border: none;
   border-radius: 8px;
   outline: none;
   background: rgba(10, 10, 10, 0.75);
   color: #fff;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
   box-sizing: border-box;
   margin-top: -200px;
  }

  input:autofill {
    border: inherit;
    background: inherit;
    color: inherit;
  }

  button {
    background: rgba(24, 20, 77, 0.75);;
  }

  button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
  }

  button:active {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  }


  .results{
   font-size: 1.2em;
   position: absolute;
   top: 100%;
   left: 0;
   right: 0;
   background: rgba(10, 50, 60, 0.5);
   border-radius: 8px;
   margin-top: 10px;
   max-height: 350px;
   overflow-y: auto;
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  }

  .item{
   padding: 8px 12px;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 8px;
  }

  .item:hover,
  .item.active{
   background: rgba(10, 30, 50, 0.5);
  }

  .item span.badge{
   font-size: 0.6em;
   padding: 0.3em 0.5em 0.1em 0.5em;
   border-radius: 1.5em;
   margin-left: auto;
  }

  .item span img.favicon{
   margin: 0 0 -0.2em 0;
   width: 1em;
   height: 1em;
  }

    /* --- Panel styles --- */
  #panel{
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   height: 70vh;
   background: rgba(20,20,20,0.95);
   backdrop-filter: blur(10px);
   color: #fff;
   transform: translateY(100%);
   transition: transform 0.4s ease;
   z-index: 999;
   overflow-y: auto;
   border-radius: 12px 12px 0 0;
   box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
   padding: 0 1em;
  }
  #panel.active{
   transform: translateY(0);
  }
  .panel-header{
   position: sticky;
   top: 0;
   background: rgba(20,20,20,1);
   padding: 0.5em 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
   border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .panel-header button{
   background: none;
   border: none;
   color: #fff;
   font-size: 1.2em;
   cursor: pointer;
  }

  footer{
   font-size: 0.6em;
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 5px;
   background-color: rgba(0, 0, 0, 0.6);
   color: white;
  }

  footer span{
   float: right;
  }

  footer a{
   text-decoration: none;
   color: inherit;
  }