#app-launcher {
  position: absolute;
  top: 30px;
  right: 10%;
  z-index: 2147483000;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

.app-desactivada{
  pointer-events: none;
  opacity:0.6;
  box-shadow: none !important;

}

#app-launcher #al-btn {
  position: absolute;
  width: 81px;
  height: 81px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 9999;
}


#app-launcher #al-btn:hover {
  position: absolute;
  width: 81px;
  height: 81px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: rgba(83, 83, 83, 0.468);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: 0 4px 42px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.al-btn-clicked{
  position: absolute;
  width: 81px;
  height: 81px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: rgba(83, 83, 83, 0.468);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 42px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

#app-launcher #al-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.4);
}

/* #app-launcher #al-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.18);
  backdrop-filter: saturate(140%) brightness(80%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s linear, visibility 0s linear 0.16s;
} */

#app-launcher #al-backdrop.al-show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.18s linear;
}

#app-launcher #al-menu {
  position: fixed;
  right: 16px;
  top: 130px;
  width:420px;
  max-height: 70vh;
  overflow: auto;
  border-radius: 18px;
  padding: 14px;
  opacity: 0;
  transform: scale(0.96);
  transform-origin: top right;
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0.16s;
    background: rgba(40, 40, 40, 0.291);
    border-radius: 42px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 42px rgba(0, 0, 0, 0.1);
}

#app-launcher #al-menu.al-open {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

#app-launcher #al-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 6px;
  padding: 4px;
}

#app-launcher .al-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  border-radius: 12px;
  text-decoration: none;
  color: #0f172a;
}

#app-launcher .al-item:hover {
  background: #f3f4f61e;
}

#app-launcher .al-item:focus-visible {
  outline: 4px solid rgba(59, 130, 246, 0.35);
}

#app-launcher .al-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(2, 6, 23, 0.35);
  border:3px solid rgb(206, 206, 206);

  display: block;
}

#app-launcher .al-label {
  font: 500 12px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  text-align: center;
}


#app-launcher, #app-launcher * {
  box-sizing: border-box;
}

#app-launcher #al-menu {
  scrollbar-gutter: stable both-edges;
}

#app-launcher #al-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 6px;
  padding: 4px;
}

#app-launcher #al-grid > * {
  min-width: 0;
}

#app-launcher .al-item {
  width: 100%;
}

#app-launcher .al-label {
  overflow-wrap: anywhere;
}

body.al-no-scroll {
  overflow:scroll;
  overflow-x: hidden;

}

 .al-label {
  color:rgb(202, 202, 202);
  
}
