ul {
  margin-top: 5px;
margin-left: 0;
padding-left: 0;
list-style: none;
}

ul>li {padding-left: 30px;margin-bottom: 8px;padding-top: 2px;background-repeat: no-repeat;background-position: 0.5em 0.2em;width:85%;min-width: 200px;max-width: 800px;min-height: 18px;}

.bug, .Defect, .Sub-bug, 
.update, .Enhancement, .Task, .Sub-task, .Improvement, 
.new, .New, .Epic, .epic, .story, .Story {
    list-style: none; /* Remove default bullet */
    position: relative;
    padding-left: 25px; /* Make room for the icon */
}

.bug::before, .Defect::before, .Sub-bug::before,
.update::before, .Enhancement::before, .Task::before, .Sub-task::before, .Improvement::before,
.new::before, .New::before, .Epic::before, .epic::before, .story::before, .Story::before
 {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Centers the icon vertically */
    width: 16px;
    height: 16px;
    mask-repeat: no-repeat;
    mask-size: contain;
}


.bug::before, .Defect::before, .Sub-bug::before {
    background-color: #a87000; 
    -webkit-mask-image: url(/images/error.svg);
    mask-image: url(/images/error.svg);
}
.update::before, .Enhancement::before, .Task::before, .Sub-task::before, .Improvement::before {
    /* Set the color here! */
    background-color: #473ce7; 
    -webkit-mask-image: url(/images/sparkle.svg);
    mask-image: url(/images/sparkle.svg);
}
.new::before, .New::before, .Epic::before, .epic::before, .story::before, .Story::before {
    background-color: #00a970; 
    -webkit-mask-image: url(/images/star-filled.svg);
    mask-image: url(/images/star-filled.svg);
}

.dropit-submenu { 
    right: auto !important;    
}
ul#nav_anchor {
    width: fit-content;
    min-width: fit-content;
    max-width: fit-content;
}
#versionMenu {
    background-color: #1d68d1;
    color: #fff;
    border-radius: 8px;
    width: 90px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.5;
    margin-right: 50px;
}

ul#versionMenu ul#nav_anchor li {
    width: fit-content !important;
    min-width: 90px !important;
    max-width: 120px !important;
}
