﻿.TabDisplay {
    padding:0px;
    width: 100%;
    height: fit-content;
}

.tabdisplay-tabs {
    width: 100%;
    gap: 15px;
}


.tabdisplay-content{
    display:none;
}

.tab-selected{
    display: block;
    flex-direction: column;
}

.tab-pill {
    transition: 0.1s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.tab-pill div:nth-child(1) {
    padding-block: 7px;
    display: flex;
    justify-items: center;
    padding-inline: 20px;
}

 .tab-pill:hover {
    background: var(--pill-hover);
}

.pill-active {
    color: #0082ff !important;
}

.active-line {
    width: 00%;
    transition: 0.3s;
}

.pill-active .active-line {
    display: flex;
    width: 100%;
    background: #0082ff;
    height: 2px !important;
}
