.le-history-container {
    position: relative;
    height:200px;
    background-color: var(--sideBarDialogBg);
    color:white;
    z-index: 9999999999999;
    overflow-y: hidden; 
    display: flex;
    flex-direction: column;
    margin: 10px;
    margin-bottom:0;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 23%);
}
.le-history-container-inner {
    padding: 5px 1px 5px 1px;
    flex: 1;
    overflow-y: auto;
    margin-bottom: 40px;
}
.le-history-container-history,
.le-history-container-projects {
    width: 100%;
    height: 100%;
}
.le-history-container-history:empty:after {
    content: 'Timeline is empty';
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 5px;
    opacity: 0.5;
    box-sizing: border-box;
}
.le-history-container-projects:empty:after {
    content: 'No saved projects';
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 5px;
    opacity: 0.5;
    box-sizing: border-box;
}

.le-history-item {
    padding:5px;
    border-bottom: 1px solid rgb(87, 87, 87);
    white-space: nowrap;
    text-transform: capitalize;
    cursor: pointer;
}
.le-history-item-active {
    background-color: rgba(255, 255, 255, 0.2);
}
.le-history-item-deactivate {
    opacity: 0.5;
}
.le-history-controls {
    display: flex;
    padding: 5px 0 5px 10px;
    position: absolute;
    bottom: 0;
    border-top: 1px solid #313131;
    background: var(--dialogHeaderAndFooterBg);
    width: 100%;
}
.le-history-controls-inner {
    display: flex;
}
.le-history-controls-inner .le-history-controls-item {
    margin-right: 10px;
    cursor: pointer;
}
.le-history-controls-inner .le-history-controls-item svg {
    height: 20px;
    width: auto;
    opacity: 0.7;
}
.le-history-controls-inner .le-history-controls-item svg path {
    fill: #ffffff
}
.le-history-tabs {

}
.le-history-tabs-inner {
    display: flex;
    position: relative;
    height: 30px;
    background: var(--dialogHeaderAndFooterBg);
}
.le-history-tabs-item {
   cursor: pointer;
}
.le-history-tabs-item .le-history-tabs-item-inner {
    padding: 10px 15px 11px 15px;
    /* background: #282828; */
    border-right: 1px solid #232323;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.le-history-tabs-item.le-history-tabs-item-active .le-history-tabs-item-inner {
    height: 31px;
    background-color: var(--sideBarDialogBg);
}

.le-projects-item {
    display: flex;
    cursor: pointer;
}
.le-projects-item.le-projects-item-selected {
    background: var(--selectedListItemBg);
}
.le-projects-item .le-projects-item-load {
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.le-projects-item .le-projects-item-load svg {
    height: 24px;
    width: auto;
    opacity: 0.6;
}
.le-projects-item.le-projects-item-active .le-projects-item-load svg {
    opacity: 1;
}
.le-projects-item .le-projects-item-load svg path {
    fill: #fff;
}
.le-projects-item .le-projects-item-text {
    display: flex;
    align-items: center;
}