/*
 * GOLPOOGRO - Component: Follower Profile Sub-Cards
 * Floating layout cards, verified levels badges, and premium action states
 */

.social-subcards-layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-user-subcard {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 12px 18px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* Hover scale, floating soft shadow and glass border boost */
.social-user-subcard:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.01) translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Online avatar with halo status rings */
.social-card-avatar {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  cursor: pointer;
}

.social-card-avatar .avatar-crop {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s;
}

.social-user-subcard:hover .avatar-crop {
  border-color: var(--accent-gold, #eab308);
}

.social-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Online/idle/offline status dot styling */
.social-online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid rgba(14, 20, 32, 1); /* matches sheet bg */
  z-index: 2;
}

.social-online-dot.status-online {
  background: #10b981; /* bright beautiful active emerald */
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.social-online-dot.status-idle {
  background: #f59e0b; /* idle amber */
}

.social-online-dot.status-offline {
  background: #6b7280; /* simple muted offline grey */
}

/* Credentials content */
.social-card-credentials {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  min-width: 0; /* allows text truncation inside flexbox */
}

.social-title-verification {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.social-realname {
  font-family: var(--font-sans, "Inter", sans-serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}

.social-verify-icon {
  display: inline-flex;
  color: #38bdf8; /* twitter/instagram sky azure badge */
}

.social-verify-icon i {
  width: 14px;
  height: 14px;
}

.social-level-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  color: #f59e0b;
  border: 1px solid rgba(234, 179, 8, 0.3);
  padding: 1px 5px;
  border-radius: 6px;
  line-height: 1;
}

.social-handle-name {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
}

/* Interactive descriptive icons */
.social-meta-subsc {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.sub-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}

.sub-meta-item i {
  width: 11px;
  height: 11px;
}

/* Actions panel elements */
.social-card-action-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Option actions trigger points */
.social-options-trigger-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-options-trigger-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.social-options-trigger-btn i {
  width: 17px;
  height: 17px;
}

/* Special Incoming Requests Confirmation Action Pair */
.requests-button-pair {
  display: flex;
  gap: 8px;
}

.accept-btn-glass {
  background: #2dd4bf;
  color: #0b1329;
  border: none;
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.25s;
}

.accept-btn-glass:hover {
  background: #14b8a6;
  transform: translateY(-1px);
}

.decline-btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.25s;
}

.decline-btn-glass:hover {
  background: rgba(244, 63, 94, 0.15);
  color: #f43f5e;
  border-color: rgba(244, 63, 94, 0.3);
}

.accept-btn-glass i, .decline-btn-glass i {
  width: 12px;
  height: 12px;
}
