.eu-team-search-container {
    margin-bottom: 1em;
  }

  .select2-container--default .select2-selection--single{
    width:60vw;
    border-radius:20px !important;
    min-width:400px !important;
    max-width:500px !important;
  }

.select2-search__field{
border-radius:20px !important;
}

  .select2-container.select2-container--open .select2-dropdown--below{
   border-radius:10px !important;
}
  

  .eu-team-heading{
   font-size:22px ;
   font-family:helvetica;
   font-weight:600;
   padding:30px;

  }
  .eu-team-search-input {
    width: 100%;
    padding: .5em;
    font-size: 1em;
  }

  .select2-selection__arrow{
    display:none;

  }
  .eu-search-results {
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    padding: .5em;
    background: #fff;
  }
  .eu-search-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .25em;
    padding: .25em .5em;
    border-bottom: 1px solid #eee;
  }
  .eu-search-item:last-child {
    border-bottom: none;
  }
  .eu-user-label {
    flex: 1;
  }
  .eu-no-results {
    color: #666;
    font-style: italic;
  }
  .eu-team-list {
    list-style: none;
    padding: 0;
  }
  .eu-team-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5em 0;
    border-bottom: 1px solid #eee;
  }
  .eu-remove-member{
    margin-left: 1em;
    font-size: .9em;
  }
  .eu-remove-member-lam {
    margin-left: 1em !important;
    font-size: .9em !important;
  }
  
  


  .button.eu-add-selected-member{
    background-color: #3cb682 !important;
    border-radius: 20px !important;
    color:white !important;
    margin-top:10px;
    font-family:helvetica;
    font-weight:600;
    border: 1px solid #3cb682;
}
 .button.eu-add-selected-member:hover{
    background-color: #FFFFFF !important;
    color:#3cb682 !important;
    border: 1px solid #3cb682;
}


  /* Spinner loader */
.eu-loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-left: 8px;
  }
  
  /* Animación */
  @keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Contenedor de tarjetas */
/* Contenedor de tarjetas */
.eu-team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

/* Tarjeta individual */
.eu-team-card {
  width: 220px;
  height: 100px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  padding: .75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .75rem;
  overflow: hidden;
  min-width:340px;
  max-width:340px;
}

/* Avatar */
.eu-team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Info (nombre + email) */
.eu-team-info {
  flex: 1;
  min-width: 0; /* Necesario para text-overflow */
}

.eu-team-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eu-team-email {
  margin: 2px 0 0;
  font-size: .875rem;
  color: #4a5568;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Botón eliminar dentro de la tarjeta */
.eu-team-card .eu-remove-member{
  background: transparent;
  border: none;
  color: #e53e3e;
  padding: .25rem .5rem;
  font-size: .875rem;
  cursor: pointer;
  flex-shrink: 0;
}

.eu-team-card button.eu-remove-member-lam.button  {
  
  background: transparent !important;
  border: none !important;
  color: #e53e3e !important;
  padding: .25rem .5rem !important;
  font-size: .875rem !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}



.eu-team-card .eu-remove-member:hover{
  text-decoration: underline;
}

.eu-team-card button.eu-remove-member-lam.button:hover {
	text-decoration: underline !important;
}
