.inmyexp-auth-badge,
.inmyexp-auth-badge * {
  box-sizing: border-box;
}

.inmyexp-auth-badge {
  --inmyexp-cyan: #00ffea;
  --inmyexp-pink: #ff4fd8;
  --inmyexp-bg: #020707;
  --inmyexp-panel: #071113;
  --inmyexp-text: #e9fffb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 720px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--inmyexp-cyan), transparent 30%);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--inmyexp-bg), var(--inmyexp-panel));
  color: var(--inmyexp-text);
  font-family: Inter, Arial, sans-serif;
  box-shadow: 0 0 18px rgba(0, 255, 234, 0.18);
}

.inmyexp-auth-badge__status {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.inmyexp-auth-badge__label {
  color: var(--inmyexp-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.inmyexp-auth-badge__status strong {
  display: block;
  overflow: hidden;
  color: var(--inmyexp-text);
  font-size: 15px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inmyexp-auth-badge__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.inmyexp-auth-badge__actions a,
.inmyexp-auth-badge__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--inmyexp-cyan);
  border-radius: 6px;
  background: transparent;
  color: var(--inmyexp-cyan);
  cursor: pointer;
  font: 800 12px/1.1 Inter, Arial, sans-serif;
  text-decoration: none;
}

.inmyexp-auth-badge__actions a:hover,
.inmyexp-auth-badge__actions button:hover {
  background: var(--inmyexp-cyan);
  color: #001313;
}

.inmyexp-auth-badge__actions [data-inmyexp-auth-login] {
  background: var(--inmyexp-cyan);
  color: #001313;
}

.inmyexp-auth-badge__actions [data-inmyexp-auth-logout] {
  border-color: var(--inmyexp-pink);
  color: var(--inmyexp-pink);
}

.inmyexp-auth-badge__actions [hidden] {
  display: none;
}

@media (max-width: 640px) {
  .inmyexp-auth-badge {
    align-items: stretch;
    flex-direction: column;
  }

  .inmyexp-auth-badge__actions {
    justify-content: flex-start;
  }

  .inmyexp-auth-badge__actions a,
  .inmyexp-auth-badge__actions button {
    flex: 1 1 120px;
  }
}
