/* ############################## start custom pure css for tabs in about me section ############################## */
.tab-button {
    color: #718096;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: block;
    text-decoration: none;
    /* transition: color 0.1s ease-in-out; */
    outline: none;
}
.tab-button:hover {
    color: #4a90e2;
}

.tab-button.active {
    border-bottom-width: 2px;
    border-bottom-color: #1B5EE4;
    color: #1B5EE4;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
/* ############################## end custom pure css for tabs in about me section ############################## */
.menu-link.active {
    border-bottom: 2px solid #1B5EE4;
    color: #1B5EE4;
    font-weight: bold;
    /* transition: color 0.2s ease-in-out; */
}