.equipe-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.equipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.8rem 1.5rem rgba(10, 88, 202, 0.08) !important;
}

.equipe-card .d-flex.align-items-center.gap-3 {
    min-width: 0;
    flex: 1;
    padding-right: 10px;
}

.equipe-card .d-flex.align-items-center.gap-3 > div:nth-child(2) {
    min-width: 0;
    flex: 1;
}

.equipe-card h6 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.equipe-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    flex-shrink: 0; 
}

.bg-primary-subtle {
    background-color: rgba(10, 88, 202, 0.1) !important;
}

.bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1) !important;
}

.animation-dropdown {
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-content h6 {
    letter-spacing: 0.5px;
}

.modal-content .shadow-xs {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.modal-content .form-control,
.modal-content .form-select {
    border: 1px solid var(--border-color);
    border-radius: 0.6rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.modal-content .form-control:focus,
.modal-content .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(10, 88, 202, 0.12);
    border-color: var(--primary-color);
    background-color: #ffffff !important;
}

.pagination-custom {
    background-color: #ffffff;
    padding: 0.3rem;
}

.pagination-custom .page-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--body-color);
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-custom .page-link:hover {
    background-color: var(--background-body);
    color: var(--primary-color);
}

.pagination-custom .page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(10, 88, 202, 0.3);
}

.pagination-custom .page-item.disabled .page-link {
    color: #ced4da;
    background-color: transparent;
}