#KioskTimeTracker .userTimeList {
    position: fixed;
    top: 10px;
    right: 0;
    text-align: left;
    width: 150px;
}

#KioskTimeTracker .userTime {
    padding: 8px 15px;
    padding-left: 0px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#KioskTimeTracker .userTime small {
    color: #b5b5b5;
    font-weight: normal;
    font-size: 12px;
}

#KioskTimeTracker .userTimeList:before {content: 'Time Logs';font-weight: bold;text-align: left;}

#KioskTimeTracker .userTime:hover {
    background: #f5f5f5;
}