.tab-container button.tab {
    color: #1865FF;
    border: 1px solid #1865FF;
    width: fit-content;
    height: 40px;
    border-radius: 8px;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    font-size: var(--h5);
    font-weight: 500;

}

.tab-container button.tab.active {
    color: #fff;
    background-color: #1865FF;
}


.instructorCard {
    width: 100%;
    max-width: 248px;
    min-width: 200px;
    height: auto;
    border-radius: 8px;
    gap: 24px;
    padding: 12px;
    box-shadow: 0px 0px 12px 4px #00000014;
    background-color: #fff;
}
.instructorCard.active {
    border: 1px solid #4AD991;
    background-color: #F2FCF7;
}
.instructorCard.active.selected .blue-btn{
    background: linear-gradient(88.72deg, #17EF7C -113%, #179A54 99.02%);
    border: 1px solid #4AD991;
}
.instructorCard .certified{
    display: none;
}
.instructorCard.active .certified{
    display: block;
}

.instructorCard .banner-img {
    width: 100%;
    height: 84px;
    object-fit: cover;
}

.instructorCard .profile-img {
    width: 100px;
    height: 100px;
    border: 2px solid #000000;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 12px;
}
.instructorCard .viewDetailsBtn {
    /* padding: 2px 12px; */
    width: 96px;
    height: 28px;
    background: #ECF2FE;
    border: 1px solid rgba(20, 95, 244, 0.24);
    border-radius: 4px;
    color: #145FF4;
}
.dataContainer {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    row-gap: 40px;
}
