/* Clases de Tailwind básicas */
.w-8 {
    width: 2rem;
  }
  
  .h-8 {
    height: 2rem;
  }
  
  .object-cover {
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .rounded-full {
    border-radius: 9999px;
  }
  
  /* Avatar con iniciales (NUEVO) */
  .avatar-initials {
    width: 2rem;
    height: 2rem;
    background-color: white;
    border: 1px solid #000000;
    color: black;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
  }
  
  /* Ajustar posición del dropdown */
  .navbar-end .menu li:last-child ul,
  .navbar-end .menu li:nth-last-child(2) ul {
    right: 0;
    left: auto;
    transform: translateX(0);
  }
  
  /* Asegurar que el dropdown se mantenga dentro de la pantalla */
  .navbar-end ul ul {
    position: absolute;
    right: 0;
    left: auto;
    min-width: 200px;
    max-width: 300px;
  }
  
  /* Mejorar el header del perfil - ACTUALIZADO */
  .profile-header-item {
    padding: 0;
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  
  .profile-header-item:hover {
    background-color: transparent !important;
  }
  
  /* Contenedor de la info del perfil (NUEVO) */
  .profile-info-container {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    width: 100% !important;
    white-space: nowrap;
  }
  
  .profile-info-container:hover {
    background-color: transparent !important;
  }
  
  /* Texto del perfil (NUEVO) */
  .profile-text {
    display: flex;
    flex-direction: column;
  }
  
  .profile-text p {
    margin: 0;
    font-size: 0.875rem;
    color: white;
  }
  
  .profile-name {
    font-weight: bold;
    color: white;
    font-size: 0.875rem;
    margin: 0;
  }
  
  .profile-username {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    display: block;
    margin: 0;
  }



  
/* Avatar Grande en Profile */
.avatar-large-container {
  width: 150px;
  height: 150px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  border: 4px solid #f59e0b;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.avatar-large-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
}

.avatar-large-initials {
  width: 150px;
  height: 150px;
  background-color: white;
  color: #f59e0b;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 3.5rem;
  text-transform: uppercase;
}