/* ============= Módulo Social — estilos propios, no toca admin.css ============= */

.mis-datos-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(63, 63, 70, .5);
}

.mis-datos-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(52, 211, 153, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.mis-datos-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.mis-datos-user {
  font-size: .75rem;
  color: #71717a;
}

.social-users-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.social-users-toolbar label {
  color: #a1a1aa;
  font-size: .75rem;
  white-space: nowrap;
}

.social-users-toolbar .admin-search-input {
  width: auto;
  min-width: 180px;
  margin-bottom: 0;
}

.social-users-summary {
  color: #71717a;
  font-size: .7rem;
  margin-left: auto;
}

.social-profile-status {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 600;
  white-space: nowrap;
}

.social-profile-status.filled {
  color: #34d399;
  background: rgba(52, 211, 153, .13);
}

.social-profile-status.empty {
  color: #a1a1aa;
  background: rgba(161, 161, 170, .13);
}

@media (max-width: 640px) {
  .social-users-summary {
    width: 100%;
    margin-left: 0;
  }
}

/* Card fija "Cumpleañeros del mes" */
.social-birthday-card {
  border: 1px solid rgba(52, 211, 153, .3);
  background: rgba(52, 211, 153, .06);
}
.social-birthday-card .card-title { color: #34d399; }

.birthday-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(39, 39, 42, .5);
  margin-bottom: 8px;
  transition: all .2s;
}

.birthday-day {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(161, 161, 170, .15);
  color: #d4d4d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.birthday-name {
  font-size: .85rem;
  font-weight: 600;
  color: #e4e4e7;
}

.birthday-badge {
  font-size: .68rem;
  color: #34d399;
  font-weight: 600;
  margin-top: 1px;
}

/* Resalte para quien cumple justo hoy */
.birthday-item.birthday-today {
  background: rgba(52, 211, 153, .15);
  border: 1px solid rgba(52, 211, 153, .4);
  padding: 14px;
  transform: scale(1.03);
}
.birthday-item.birthday-today .birthday-day {
  background: #34d399;
  color: #000;
  width: 40px;
  height: 40px;
  font-size: 1rem;
}
.birthday-item.birthday-today .birthday-name {
  font-size: .95rem;
}

/* Punto de notificación sobre la pestaña Social */
.nav-dot {
  position: absolute;
  top: 2px;
  right: calc(50% - 16px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f87171;
  box-shadow: 0 0 0 2px rgba(24, 24, 27, .9);
}
