.tab-container{
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
}
.tab{
    display: flex;
    margin-left: 2px;
    font-weight: bold;
    height: 20px;
    min-width: 139px;
    padding: 10px;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    background-color: rgb(204, 204, 204);
    outline: 2px solid white;
    justify-content: space-evenly;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.tab:hover{
    background-color: var(--second-color);
    border-bottom: 5px solid var(--text-color);
    color: white;
}
.active-tab{
    display: flex ;
    background-color: var(--second-color);
    border-bottom: 5px solid var(--text-color);
    color: white;
}
.tab-row-container-horizontal{
     display: flex;
     border-bottom: 5px solid var(--second-color);
}
.tab-body-container{
    display: flex;
}
.tab-body{
    display: none;
    border-radius: 10px;
    background-color: var(--primary-color-transparent);
    width: 100%;
    padding: 10px;
    height: -webkit-fill-available;
}
.tab-body{
    display: none;
}
.active-body{
    display: block;
}