/* ==========================================================================
   ORCHA GREEK ADMIN / WORKSPACE SETUP STYLES - PIXEL-PERFECT REPLICA
   ========================================================================== */

.admin-page-wrap {
  min-height: 100vh;
  width: 100%;
  background-color: #06090F;
  color: #F8FAFC;
  font-family: var(--font-sans, 'Inter', sans-serif);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Header */
.admin-top-nav {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 32px 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
}

.admin-nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-nav-logo {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: #38BDF8;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.admin-nav-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
}

.admin-nav-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #94A3B8;
  text-transform: uppercase;
  font-family: var(--font-mono, monospace);
}

.admin-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.6);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0284C7;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.admin-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.admin-user-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
}

.admin-user-domain {
  font-size: 0.65rem;
  color: #94A3B8;
  font-family: var(--font-mono, monospace);
}

/* Main 2-Column Content Layout */
.admin-main-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 32px 40px 32px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
  flex: 1;
  box-sizing: border-box;
}

@media (max-width: 1080px) {
  .admin-main-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* Left Column */
.admin-left-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.admin-page-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 2.3rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0;
}

.admin-page-desc {
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.55;
  margin: 0;
}

/* "Τι κάνει ο Admin;" Explainer Card */
.admin-explainer-card {
  background: rgba(13, 20, 36, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-explainer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

.admin-explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .admin-explainer-grid {
    grid-template-columns: 1fr;
  }
}

.admin-explainer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.admin-icon-box-blue {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(2, 132, 199, 0.22);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.admin-explainer-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  line-height: 1.25;
}

.admin-explainer-text p {
  font-size: 0.74rem;
  color: #94A3B8;
  line-height: 1.35;
  margin: 0;
}

/* 4-Step Progress Indicator */
.admin-stepper-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(11, 16, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  gap: 10px;
  overflow-x: auto;
}

.admin-step-node {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.admin-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  color: #94A3B8;
}

.admin-step-node.active .admin-step-circle {
  background: #0284C7;
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(2, 132, 199, 0.6);
}

.admin-step-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.admin-step-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #E2E8F0;
}

.admin-step-sub {
  font-size: 0.68rem;
  color: #64748B;
}

.admin-step-divider {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  min-width: 16px;
}

/* Section Card 1: Operation Mode Radio Cards */
.admin-section-card {
  background: rgba(11, 18, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-section-title-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 3px 0;
}

.admin-section-title-wrap p {
  font-size: 0.8rem;
  color: #94A3B8;
  margin: 0;
}

.admin-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 900px) {
  .admin-options-grid {
    grid-template-columns: 1fr;
  }
}

.admin-mode-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 150px;
  transition: all 0.2s ease;
  position: relative;
}

.admin-mode-card:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(56, 189, 248, 0.3);
}

.admin-mode-card.active {
  background: rgba(2, 132, 199, 0.12);
  border-color: #0284C7;
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.25);
}

.admin-mode-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.admin-mode-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(2, 132, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #38BDF8;
}

.admin-radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.admin-mode-card.active .admin-radio-circle {
  border-color: #38BDF8;
}

.admin-radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38BDF8;
  display: none;
}

.admin-mode-card.active .admin-radio-dot {
  display: block;
}

.admin-mode-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.admin-mode-body p {
  font-size: 0.74rem;
  color: #94A3B8;
  line-height: 1.4;
  margin: 0;
}

.admin-mode-footnote {
  font-size: 0.68rem;
  color: #64748B;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 8px;
}

/* Section Card 2: Team Invites */
.admin-invite-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-role-pills-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-role-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #94A3B8;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-role-pill:hover {
  border-color: rgba(56, 189, 248, 0.4);
  color: #FFFFFF;
}

.admin-role-pill.active {
  background: #0284C7;
  border-color: #0284C7;
  color: #FFFFFF;
  box-shadow: 0 0 14px rgba(2, 132, 199, 0.5);
}

.admin-invite-input-row {
  display: flex;
  gap: 10px;
}

@media (max-width: 640px) {
  .admin-invite-input-row {
    flex-direction: column;
  }
}

.admin-name-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.admin-input-icon {
  position: absolute;
  left: 14px;
  color: #64748B;
  font-size: 1rem;
}

.admin-name-input {
  width: 100%;
  background: rgba(10, 16, 29, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px 12px 42px;
  color: #F8FAFC;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.admin-name-input:focus {
  border-color: #38BDF8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.3);
}

.admin-invite-btn {
  background: #0284C7;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.admin-invite-btn:hover {
  background: #0369A1;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
}

/* Invited Team Badges List */
.admin-team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.admin-member-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.78rem;
  color: #E2E8F0;
}

.admin-role-tag {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(2, 132, 199, 0.3);
  color: #38BDF8;
}

/* Right Sidebar */
.admin-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Luxury Photo Card */
.admin-photo-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-photo-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.admin-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 9, 15, 0.95) 0%, rgba(6, 9, 15, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  box-sizing: border-box;
}

.admin-photo-caption {
  font-size: 0.84rem;
  font-weight: 600;
  color: #F1F5F9;
  line-height: 1.3;
}

/* Checklist Card */
.admin-side-card {
  background: rgba(11, 18, 32, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-side-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.admin-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #94A3B8;
}

.admin-check-item.done {
  color: #F1F5F9;
  font-weight: 600;
}

.admin-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.admin-check-icon.done {
  background: #10B981;
  color: white;
}

.admin-check-icon.pending {
  border: 1.5px solid #475569;
}

/* Action Buttons Card */
.admin-actions-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-btn-save {
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38BDF8;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.admin-btn-save:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: #38BDF8;
}

.admin-btn-proceed {
  width: 100%;
  background: linear-gradient(135deg, #0284C7 0%, #0EA5E9 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  transition: all 0.2s ease;
}

.admin-btn-proceed:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.6);
}

.admin-btn-demo {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  border-radius: 10px;
  padding: 11px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.admin-btn-demo:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.admin-side-note {
  font-size: 0.72rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

/* Footer */
.admin-footer {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #64748B;
  box-sizing: border-box;
}

.admin-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-footer-link {
  color: #94A3B8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: color 0.15s;
}

.admin-footer-link:hover {
  color: #38BDF8;
}


/* === ENHANCEMENTS: 2-SEC HOVER EXPLAINER & COPY LINK / DIRECT PANEL === */

.admin-pill-with-hover {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-pill-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #38BDF8, #F59E0B);
  border-radius: 2px;
  z-index: 1;
}

.admin-pill-hint-dot {
  font-size: 0.72rem;
  opacity: 0.75;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.admin-pill-hint-dot:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Floating 2-Sec Explanation Card */
.admin-floating-explainer {
  position: fixed;
  z-index: 999999;
  background: linear-gradient(150deg, rgba(15, 23, 42, 0.98), rgba(10, 16, 29, 0.99));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(14, 165, 233, 0.3);
  border-radius: 14px;
  padding: 20px;
  color: #F8FAFC;
  box-sizing: border-box;
}

.afe-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.afe-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.afe-icon {
  font-size: 1.6rem;
  background: rgba(2, 132, 199, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.afe-title-wrap h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.afe-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #38BDF8;
  background: rgba(56, 189, 248, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 3px;
}

.afe-close-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.afe-close-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.afe-lead {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.5;
  margin: 14px 0;
}

.afe-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.afe-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px 12px;
}

.afe-item-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.afe-item-text {
  font-size: 0.82rem;
  color: #E2E8F0;
  line-height: 1.45;
}

.afe-item-text strong {
  color: #FFFFFF;
  display: inline;
  margin-right: 4px;
}

.afe-footer-note {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: #94A3B8;
}

/* Transformed Copy Mode Button */
.admin-invite-btn.copy-mode {
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.45);
}

.admin-invite-btn.copy-mode:hover {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.6);
}

/* Generated Link Card */
.admin-invite-link-card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ailc-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ailc-icon-badge {
  font-size: 1.3rem;
  width: 38px;
  height: 38px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ailc-info {
  flex: 1;
  min-width: 0;
}

.ailc-title {
  font-size: 0.85rem;
  color: #F1F5F9;
  font-weight: 500;
}

.ailc-url {
  display: block;
  font-family: monospace;
  font-size: 0.8rem;
  color: #38BDF8;
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 3px;
}

.ailc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ailc-btn-copy {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ailc-btn-copy:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.ailc-btn-copy.copied {
  background: #10B981;
  border-color: #10B981;
}

.ailc-btn-launch {
  background: #0284C7;
  border: none;
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
  transition: all 0.2s ease;
}

.ailc-btn-launch:hover {
  background: #0369A1;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
  transform: translateY(-1px);
}

.ailc-footer-note {
  font-size: 0.76rem;
  color: #94A3B8;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Clickable Member Badges */
.admin-team-section-sub {
  margin-top: 10px;
}

.admin-team-sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #94A3B8;
  margin-bottom: 8px;
}

.admin-team-sub-tip {
  font-size: 0.72rem;
  color: #38BDF8;
}

.admin-member-badge.clickable {
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.admin-member-badge.clickable:hover {
  background: rgba(30, 41, 59, 0.95);
  border-color: #38BDF8;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
}

.badge-avatar {
  font-size: 0.85rem;
}

.badge-name {
  font-weight: 600;
}

.badge-action-arrow {
  font-size: 0.7rem;
  color: #38BDF8;
  margin-left: 2px;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.admin-member-badge.clickable:hover .badge-action-arrow {
  opacity: 1;
  transform: translateX(3px);
}


/* Workspace Switcher in Admin Header */
.admin-ws-switcher {
  display: flex;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 3px;
  gap: 4px;
  margin-left: 12px;
}

.ws-switch-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ws-switch-btn:hover {
  color: #FFFFFF;
}

.ws-switch-btn.active {
  background: #0284C7;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.4);
}
