.taskbar {
    z-index: 1000;
    width: 100%;
    height: var(--taskbar-height);
    background-color: var(--taskbar-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
  
.dark-theme .taskbar {
    background-color: var(--taskbar-color);
}
  
  
.weather-info {
    display: flex;
    align-items: center;
    padding: 0rem 1.5rem;
    height: 100%;
    cursor: pointer;
}

.taskbar-objects {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding-left: 7.75%;
    padding-right: 5%;
    color: var(--text-color);
}
  
.temperature {
    font-size: .8rem;
    font-weight: bold;
    margin: 0;
}
  
.description {
    font-size: .8rem;
    display: block;
    margin: 0;
    color: #A0A0A0;
    text-wrap: nowrap
}
  
.weather-info .nova {
    width: 75%;
    height: 75%;
}
  
.system-tray-icons {
    display: flex;
    align-items: center;
    height: 100%;
}
  
.icon-list {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
  
::marker {
    color: blue;
    font-size: 1.2em;
}

.icon-list--icon {
    height: 100%;
    width: 100%;
    list-style-type: none;
    display: flex;
    align-items: center;
    text-align: center;
    padding-inline: 18%;
    font-size: 1.28em;
    justify-content: center;
    cursor: pointer;
}

.icon-list--icon:hover {
    background-color: var(--hover-taskbar-color);
}

.taskbar-items {
    height: 100%;
}
  
.taskbar-middle-icons {
    width: 30px;
    height: 30px;
    padding: 10.5%;
    font-size: 28px;
    display: flex;
    align-items: center;
    text-align: center;
}

.system-tray-icons---icon {
    width: 16px;
    height: 16px;
    margin: 0 8px;
    font-size: 16px;
}

  
.widgets > .icon-list > img, .widgets .nova {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 8px;
}

.date {
    font-size: .9rem;
    display: block;
    font-weight: 520;
    margin: 0; 
    cursor: default;
    position: relative;
    z-index: 999;
}


.icon-list .taskbar-objects::after, #bell::after {
    content: attr(data-description);
    display: none;
    position: absolute;
    bottom: 3rem;
    background-color: var(--date-bg);
    color: var(--text-color);
    padding: 5px;
    text-wrap: nowrap;
    right: 10px;
    z-index: 999;
}

.icon-list .taskbar-objects:hover::after, #bell:hover::after {
    display: block;
}

.hover-right {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-inline: 5%;
}

.hover-right:hover  {
    background-color: var(--hover-taskbar-color);
}

.empty {
    width: 3rem;
    height: 100%;
    display: flex;
    border-left: thin solid var(--text-color);
    z-index: 999;
}