.taskbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;

  background: rgba(20, 22, 28, 0.86);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  z-index: 50;
}

.taskbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.taskbar__start {
  width: 38px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.90);
  font-weight: 800;
}

.taskbar__app {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 650;
}

.taskbar__right {
  color: rgba(255, 255, 255, 0.80);
  font-variant-numeric: tabular-nums;
}