#screen-select{
  position:fixed;
  inset:0;
}

#homeScreen{

  position:fixed;

  left:0;
  right:0;
  bottom:0;

  z-index:20;

  display:flex;
  flex-direction:column;

  gap:8px;

  padding:12px;

  max-height:55vh;
  min-height:260px;

  background:
    linear-gradient(
      to top,
      rgba(255,255,255,.98),
      rgba(255,255,255,.88)
    );

  backdrop-filter:blur(10px);

  border-top-left-radius:20px;
  border-top-right-radius:20px;

  overflow:hidden;

}

.topbar{

  display:flex;

  justify-content:space-between;

  align-items:center;

}

.bottom-actions{

  position:fixed;

  left:0;
  right:0;

  top:88px;

  z-index:50;

  display:flex;

  gap:10px;

  padding:12px 16px;

}

.bottom-actions button{
  flex:1;
}

#lista-hoteis{

  flex:1;

  overflow:auto;

  display:flex;

  flex-direction:column;

  gap:10px;

  padding-top:90px;

  padding-bottom:24px;

}

.delete-hotel{

  border:none;

  background:#ffebeb;

  color:#c62828;

  border-radius:8px;

  padding:6px 10px;

  cursor:pointer;

}