/* SocraNext admin overview page – branded card layout */

/* CSS fallback: hide WP admin notices on this page (PHP hook handles most, this catches late-registered ones) */
#wpbody-content .notice,
#wpbody-content .update-nag {
  display: none !important;
}

.socranext-admin-wrap {
  max-width: 480px;
  margin: 2rem auto;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
}

.socranext-admin-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  padding: 2rem;
  text-align: center;
}

.socranext-admin-card .socranext-admin-logo {
  display: block;
  height: 48px;
  width: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.socranext-admin-card .socranext-admin-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000040;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.socranext-admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.socranext-admin-badge--connected {
  background: #dcfce7;
  color: #166534;
}

.socranext-admin-badge--disconnected {
  background: #fee2e2;
  color: #991b1b;
}

.socranext-admin-actions {
  margin-bottom: 1rem;
}

.socranext-admin-actions .socranext-admin-btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  border: 1px solid transparent;
}

.socranext-admin-btn--primary {
  background: #06b6d4;
  color: #fff;
  border-color: #06b6d4;
}

.socranext-admin-btn--primary:hover {
  background: #0891b2;
  color: #fff;
  border-color: #0891b2;
}

.socranext-admin-btn--outline {
  background: #fff;
  color: #6b7280;
  border-color: #d1d5db;
}

.socranext-admin-btn--outline:hover {
  background: #f9fafb;
  color: #374151;
  border-color: #9ca3af;
}

.socranext-admin-version {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1rem;
}
