.taskbar { 
  background-color: black;
  position: fixed;
  top: 0px;
  /* bottom: 97%; */
  left: 0px;
  right: 0px;
  display: flex;
  justify-content: space-between;
  z-index: 200;
  /* min-height: 30px; */
  height: 30px;
}

/* This configuration is for the left side of the taskbar. 
  It also configures the element when the button is hover
*/
.taskbar-left { 
  width: 15%;
  height: 100%;
  display: flex;
  align-items: center;
  
}

.taskbar-menu {
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  border-width: 0;
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  column-gap: 5px;
}
.taskbar-logo{
  height: 90%;
  border: 0.1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}


.taskbar-os-menu {
  background-color: black;
  position: absolute;
  top: 100%;
  color: white;
}

.taskbar-shortcut {
  display: flex;
  padding: 20px 20px;
  align-items: center;
  justify-content: left;
}
.shortcut-icon {
  width: 30px;
}
.shortcut-icon img {
  width: 100%;
  filter: invert(100%);
}
.shortcut-text {
  margin-left: 10px;
  font-weight: bold;
}
.taskbar-os-menu {
  opacity: 0;
  transition: opacity 0.15s;
}

.taskbar-left .taskbar-os-menu {
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;

}

.taskbar-left:hover .taskbar-os-menu {
  opacity: 1;
}
/* Configuration for the right side */
.taskbar-right {
  display: flex;
  align-items: center;
}

.taskbar-right img { 
  height: 100%;
  filter: invert(100%);
  margin: 2px;
}
