/* Styles personnalisés pour les onglets de profil */
.profile-tabs {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 1rem;
}

.profile-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin-right: 2px;
    transition: all 0.3s ease;
}

.profile-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
    background-color: #f8f9fa;
}

.profile-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.profile-tabs .nav-link:not(.active) {
    color: #6c757d;
}

/* Contenu des onglets */
.profile-tab-content {
    min-height: 300px;
    padding: 1rem 0;
}

.profile-tab-pane {
    display: none;
  animation: fadeIn 0.3s ease-in;
}

.profile-tab-pane.active {
 display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Indicateur visuel pour les onglets actifs */
.profile-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0d6efd;
}

.profile-tabs .nav-link {
    position: relative;
}