/* Premium CSS for Devaluator */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;600;800&display=swap');

:root {
  --bg-primary: #0a0b10;
  --bg-secondary: #14161f;
  --text-primary: #f8f9fa;
  --text-secondary: #a0a5b5;
  --accent-color: #00f0ff;
  --accent-violet: #7000ff;
  --accent-pink: #d63384;
  --accent-gradient: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
  --glass-bg: rgba(20, 22, 31, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(112, 0, 255, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.08), transparent 25%);
  background-attachment: fixed;
}

/* Glassmorphism Navbar */
.navbar.glass-nav {
  background: transparent !important;
  border-bottom: none !important;
}

.navbar-brand.brand-accent {
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s ease;
  margin: 0 2rem 0 0;
  padding: 0;
  line-height: 1.5;
}

.navbar-nav .nav-link {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0;
  line-height: 1.5;
  color: var(--text-secondary) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--text-primary) !important;
}

.navbar-brand.brand-accent:hover {
  opacity: 0.8;
}

/* Overrides for Dark Mode */
.text-dark {
  color: var(--text-primary) !important;
}

.text-muted {
  color: var(--text-secondary) !important;
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typography Enhancements */
.display-4.gradient-text {
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.lead.premium-text {
  color: var(--text-secondary);
  font-weight: 200;
  line-height: 1.6;
}

.premium-text {
  font-weight: 300;
  line-height: 1.6;
}

.text-justify {
  text-align: justify;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

code {
  color: var(--accent-pink);
  background-color: rgba(214, 51, 132, 0.1);
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

.content-constrained {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.brand-logo-main {
  width: 120px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 15px rgba(123, 44, 191, 0.4));
}

/* Footer */
.footer {
  background: transparent !important;
  border-top: none !important;
  color: rgba(255, 255, 255, 0.3) !important;
  padding: 20px 0 30px 0;
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 50;
}

.footer a {
  color: rgba(255, 255, 255, 0.3) !important;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #f8f9fa !important;
}

.version-text {
  font-family: monospace; 
  opacity: 0.5; 
  font-size: 0.85rem;
}

/* Glass Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(112, 0, 255, 0.7);
}

/* WOW Effect: Ambient Glow Orbs (GPU-optimized static radial gradients) */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translateZ(0);
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.35) 0%, rgba(112, 0, 255, 0) 70%);
  top: 10%;
  left: 20%;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, rgba(0, 240, 255, 0) 70%);
  bottom: 20%;
  right: 15%;
}

/* WOW Effect: Typewriter Cursor */
.typewrite > .wrap {
  position: relative;
  display: inline-block;
  padding-right: 0.1em;
}
.typewrite > .wrap::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 0.08em;
  background-color: var(--text-primary);
  animation: blink 0.8s infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* WOW Effect: Premium CTA Buttons */
.btn-wow {
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-glow {
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 0 20px rgba(112, 0, 255, 0.4);
}
.btn-glow:hover {
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
  color: #fff;
}

.btn-glass {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #fff;
}

.btn-wow.btn-sm {
  padding: 6px 18px;
  font-size: 0.85rem;
}

/* Glass Inputs & Form Controls */
.glass-input,
.form-control.glass-input,
.form-select.glass-input {
  background: rgba(10, 11, 16, 0.75) !important;
  border: 1px solid var(--glass-border) !important;
  color: var(--text-primary) !important;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.glass-input:focus,
.form-control.glass-input:focus,
.form-select.glass-input:focus {
  background: rgba(14, 16, 24, 0.95) !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.25) !important;
  color: #fff !important;
}

.glass-input::placeholder,
.form-control.glass-input::placeholder {
  color: rgba(160, 165, 181, 0.5) !important;
}

/* Corporate Badges */
.badge-glass {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--glass-border) !important;
  color: var(--text-primary) !important;
}

.badge-cyan {
  background: rgba(0, 240, 255, 0.08) !important;
  border: 1px solid rgba(0, 240, 255, 0.35) !important;
  color: var(--accent-color) !important;
}

.badge-violet {
  background: rgba(112, 0, 255, 0.12) !important;
  border: 1px solid rgba(112, 0, 255, 0.4) !important;
  color: #c792ea !important;
}

.badge-pink {
  background: rgba(214, 51, 132, 0.12) !important;
  border: 1px solid rgba(214, 51, 132, 0.4) !important;
  color: var(--accent-pink) !important;
}

/* Glass Panel (subtle info containers) */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
}
/* Chatbot Styles */
.chat-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(112, 0, 255, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}
.chat-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}
.chat-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  height: 500px;
  max-height: 80vh;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: slideUp 0.3s ease-out forwards;
}

/* Mobile Responsiveness for Chat */
@media (max-width: 768px) {
  .chat-fab {
    bottom: 20px;
    left: calc(100vw - 70px);
    right: auto;
    width: 50px;
    height: 50px;
  }
  .chat-window {
    bottom: 80px;
    right: 15px;
    left: 15px;
    width: auto;
    height: 65vh;
  }
}
.chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-entry {
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 4px 6px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.chat-entry.user-entry {
  border-left: 2px solid var(--accent-color) !important;
  padding-left: 10px;
}
.chat-entry.bot-entry {
  border-left: 2px solid var(--accent-violet) !important;
  padding-left: 10px;
}
.chat-entry-author {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-entry.user-entry .chat-entry-author {
  color: var(--accent-color);
}
.chat-entry.bot-entry .chat-entry-author {
  color: #c792ea;
}
.chat-entry-content {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #e2e8f0;
  word-break: break-word;
  white-space: pre-wrap;
}
.chat-entry.user-entry .chat-entry-content {
  color: #ffffff;
}
.chat-prompt-chip {
  font-size: 0.72rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--accent-color);
  transition: all 0.2s ease;
  cursor: pointer;
}
.chat-prompt-chip:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--accent-color);
  color: #ffffff;
}
.loading-dots:after {
  content: '.';
  animation: dots 1.5s steps(5, end) infinite;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes dots {
  0%, 20% { color: rgba(255,255,255,0); text-shadow: .25em 0 0 rgba(255,255,255,0), .5em 0 0 rgba(255,255,255,0); }
  40% { color: white; text-shadow: .25em 0 0 rgba(255,255,255,0), .5em 0 0 rgba(255,255,255,0); }
  60% { text-shadow: .25em 0 0 white, .5em 0 0 rgba(255,255,255,0); }
  80%, 100% { text-shadow: .25em 0 0 white, .5em 0 0 white; }
}

/* SignalR Live Chat Stream - Linear row layout (No tiles / kacheln) */
.chat-line {
  display: block;
  padding: 4px 8px;
  margin-bottom: 2px;
  border-radius: 4px;
  line-height: 1.5;
  font-size: 0.95rem;
  word-break: break-word;
  transition: background-color 0.15s ease;
}

.chat-line:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.chat-line-source {
  display: inline-block;
  font-size: 0.85rem;
  vertical-align: baseline;
  margin-right: 5px;
}

.chat-line-user {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
  margin-right: 2px;
}

.chat-line-colon {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 6px;
  user-select: none;
}

.chat-line-text {
  color: #e2e8f0;
  font-weight: 400;
}

#signalr-messages::-webkit-scrollbar {
  width: 6px;
}
#signalr-messages::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
#signalr-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.25);
  border-radius: 3px;
}
#signalr-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 240, 255, 0.5);
}

/* FaStep Guided Wizard Styles */
/* FaStep Unified Header Stepper Toolbar */
:root {
  --fs-header-height: 54px;
}

.fastep-app-header {
  min-height: 54px;
  background: rgba(10, 11, 16, 0.9) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.18) !important;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1040;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

#fs-header-stepper {
  transition: opacity 0.25s ease;
}

.fs-header-step-dots {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 2px 6px;
}

.fs-wizard-step-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 1.5px;
  outline: none !important;
  text-decoration: none;
  transition: all 0.25s ease;
}

.fs-wizard-step-btn .step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #141622;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.fs-wizard-step-btn:hover .step-circle {
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.45);
}

.fs-wizard-step-btn.active .step-circle {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-violet) 100%);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.65);
  transform: scale(1.12);
}

.fs-wizard-step-btn.completed .step-circle {
  background: rgba(0, 240, 255, 0.16);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.fs-step-card {
  border-top: 3px solid var(--accent-color);
  scroll-margin-top: calc(var(--fs-header-height, 54px) + 20px);
  transition: all 0.3s ease;
}

.fs-subtab-btn.active {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-violet) 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 14px rgba(0, 240, 255, 0.25);
}

/* ==========================================
   AI STUDIO - NEURAL CHAT WORKSPACE (GEMINI/CHATGPT STYLE)
   ========================================== */
.studio-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 165px);
  min-height: 520px;
}

.studio-header {
  border-radius: 12px;
  background: rgba(15, 18, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.studio-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-color);
  animation: studioPulse 1.8s infinite;
}

@keyframes studioPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}

.studio-body {
  display: flex;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.studio-sidebar {
  width: 300px;
  min-width: 260px;
  max-width: 320px;
  overflow-y: auto;
  border-radius: 12px;
  background: rgba(13, 16, 25, 0.75);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.studio-sidebar.sidebar-collapsed {
  display: none !important;
}

.studio-select, .studio-textarea {
  background: rgba(10, 12, 18, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-radius: 8px;
}

.studio-select:focus, .studio-textarea:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.25) !important;
}

.studio-session-item {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  color: var(--text-secondary);
}

.studio-session-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.studio-session-item.active {
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.35);
  color: var(--accent-color);
  font-weight: 600;
}

.studio-sessions-list {
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 240, 255, 0.3) transparent;
}

.studio-sessions-list::-webkit-scrollbar {
  width: 5px;
}

.studio-sessions-list::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.25);
  border-radius: 4px;
}

.studio-sessions-list::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.studio-main {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  background: rgba(13, 16, 25, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.studio-thread {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.studio-icon-halo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prompt-card {
  cursor: pointer;
  background: rgba(20, 24, 38, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.25s ease;
}

.prompt-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.18);
}

.studio-user-card {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 16px 16px 2px 16px;
  color: #ffffff;
  max-width: 78%;
  font-size: 0.96rem;
  line-height: 1.55;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.studio-assistant-card {
  background: rgba(18, 22, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--text-primary);
  font-size: 0.96rem;
  line-height: 1.65;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.ai-avatar-mini {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.studio-stream-cursor {
  display: inline-block;
  width: 7px;
  height: 1.15em;
  background-color: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-color);
  vertical-align: -0.15em;
  margin-left: 3px;
  border-radius: 1px;
  animation: cursorBlink 0.8s infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.studio-code-block {
  background: rgba(9, 11, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.studio-code-floating-actions {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 5;
  background: rgba(20, 24, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.studio-code-block:hover .studio-code-floating-actions {
  border-color: rgba(0, 240, 255, 0.35);
  background: rgba(20, 24, 38, 0.95);
}

.studio-code-lang {
  color: var(--accent-color);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.studio-code-block .btn-copy-code {
  font-size: 0.75rem;
  color: var(--text-secondary) !important;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.studio-code-block .btn-copy-code:hover {
  color: #ffffff !important;
}

.studio-code-block pre {
  color: #00f0ff;
  font-size: 0.88rem;
  overflow-x: auto;
  padding-top: 14px !important;
  padding-right: 110px !important;
}

.studio-inline-code {
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-color);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88em;
}

.studio-input-wrapper {
  background: linear-gradient(180deg, transparent 0%, rgba(13, 16, 25, 0.95) 30%);
  position: relative;
  z-index: 10;
}

.studio-input-card {
  max-width: 840px;
  background: rgba(18, 22, 34, 0.92);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  transition: all 0.25s ease;
}

.studio-input-card:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px rgba(0, 240, 255, 0.25);
}

.studio-prompt-textarea {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  resize: none;
  font-size: 0.96rem;
  line-height: 1.5;
  box-shadow: none !important;
  padding: 8px 12px;
  max-height: 180px;
}

.studio-prompt-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-studio-action {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .studio-sidebar {
    position: absolute;
    top: 60px;
    left: 10px;
    bottom: 10px;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  }
  .studio-user-card {
    max-width: 90%;
  }
}

/* User Account Dropdown (Devaluator Minimal Glass) */
.nav-user-dropdown-menu {
  background: rgba(14, 17, 26, 0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6) !important;
  min-width: 240px;
}

.nav-user-dropdown-menu .dropdown-item {
  color: #a0a5b5;
  transition: all 0.2s ease;
  font-size: 0.88rem;
  border-radius: 6px;
  margin-bottom: 2px;
}

.nav-user-dropdown-menu .dropdown-item:hover,
.nav-user-dropdown-menu .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  transform: translateX(2px);
}

.nav-user-dropdown-menu .dropdown-item:hover i {
  color: #ffffff !important;
}

/* FaStep Step 3 Compact Suggestion Panels */
#fs-jobtitle-cards-grid,
#fs-company-cards-grid {
  max-height: 280px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

.jobtitle-pick-card,
.company-pick-card {
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}

#fs-jobtitle-cards-grid::-webkit-scrollbar,
#fs-company-cards-grid::-webkit-scrollbar {
  width: 5px;
}
#fs-jobtitle-cards-grid::-webkit-scrollbar-track,
#fs-company-cards-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}
#fs-jobtitle-cards-grid::-webkit-scrollbar-thumb,
#fs-company-cards-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.35);
  border-radius: 4px;
}
#fs-jobtitle-cards-grid::-webkit-scrollbar-thumb:hover,
#fs-company-cards-grid::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}



