/* Styles pour la carte de profil */
.profile-card {
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .profile-picture {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d0e2ff;
  }
  
  .profile-username {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
  }
  
  .profile-title {
    font-size: 1.1rem;
    color: #4a90e2;
    margin: 0;
  }
  
  .profile-location {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
  }
  
  /* Styles pour les sections d'information */
  .card-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
  }
  
  .card-section:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  
  .section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
  }
  
  .info-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.25rem;
  }
  
  .info-value {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
  }
  
  /* Styles pour les boutons d'édition */
  .edit-button {
    border-color: #4a90e2;
    color: #4a90e2;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .edit-button:hover {
    background-color: #4a90e2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(74, 144, 226, 0.3);
  }
  
  .edit-button i {
    font-size: 1rem;
  }
  
  /* Styles pour le tableau et le filtre */
  .filter-container {
    max-width: 400px;
  }
  
  .filter-wrapper {
    position: relative;
  }
  
  .filter-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.2rem;
  }
  
  .filter-input {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 25px;
    border: 1px solid #d0e2ff;
    background-color: #f7f9fc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .filter-input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    outline: none;
  }
  
  .table {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .table thead th {
    background-color: #f7f9fc;
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #d0e2ff;
  }
  
  .table tbody tr {
    transition: background-color 0.3s ease;
  }
  
  .table tbody tr:hover {
    background-color: #f0f4f8;
  }
  
  .table td {
    vertical-align: middle;
    font-size: 0.95rem;
    color: #6c757d;
  }
  
  .badge.bg-success {
    background-color: #28a745 !important;
    color: #ffffff;
  }
  
  .badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529;
  }
  
  .badge.bg-danger {
    background-color: #dc3545 !important;
    color: #ffffff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .profile-card {
      padding: 1rem;
    }
    .profile-picture {
      width: 60px;
      height: 60px;
    }
    .profile-username {
      font-size: 1.3rem;
    }
    .profile-title {
      font-size: 1rem;
    }
    .profile-location {
      font-size: 0.85rem;
    }
    .card-section {
      padding: 1rem;
    }
    .section-title {
      font-size: 1.1rem;
    }
    .info-label {
      font-size: 0.9rem;
    }
    .info-value {
      font-size: 0.95rem;
    }
    .edit-button {
      padding: 0.4rem 0.8rem;
      font-size: 0.85rem;
    }
    .filter-container {
      max-width: 100%;
    }
    .filter-input {
      font-size: 0.9rem;
      padding: 0.5rem 0.75rem 0.5rem 2rem;
    }
    .filter-icon {
      font-size: 1rem;
      left: 0.75rem;
    }
    .table td {
      font-size: 0.9rem;
    }
  }