.profile-interface .profile-header-row {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.profile-interface .profile-overview-table th {
    width: 120px;
}

.profile-interface .card-tabs .nav {
    margin-bottom: 14px;
}

.profile-interface .profile-panel__tabs {
    border-bottom: 1px solid #e6eaed;
    gap: 8px;
}

.profile-interface .profile-panel__tabs .nav-link {
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: #4d6675;
    font-weight: 600;
    padding: 10px 14px;
}

.profile-interface .profile-panel__tabs .nav-link.active,
.profile-interface .profile-panel__tabs .nav-link:hover,
.profile-interface .profile-panel__tabs .nav-link:focus {
    color: #064f72;
    background: transparent;
    border-color: #064f72;
}

.profile-interface .profile-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.profile-interface .profile-section-card {
    border: 1px solid #e6eaed;
    border-radius: 8px;
    padding: 14px 16px;
    background: #fff;
}

.profile-interface .profile-section-card__title {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #163245;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .profile-interface .profile-section-grid {
        grid-template-columns: 1fr;
    }
}
