.tab-container {
    display: flex;
    width: 300px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    overflow: hidden;
}


.tab {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    background-color: #F7F8FB;
    color: #2B3674;
    font-weight: bold;
    cursor: pointer;
}


.tab.active {
    background-color: #FFFFFF;
    border-bottom: 3px solid #2B3674;
}


.tab-content {
    display: none;

    padding: 10px;
    background-color: #FFFFFF;
    margin-top: -1px;
}


.tab-content.active {
    display: block;
}
