/* ═══════════════════════════════════════════════════════════════════════
   FLUX STUDIO - MAIN STYLESHEET
   ═══════════════════════════════════════════════════════════════════════ */

/* CSS Variables & Theme */
:root {
  --accent: #8b5cf6;
  --accent-dim: rgba(139,92,246,0.18);
  --border: rgba(255,255,255,0.07);
  --glass-bg: rgba(22,25,36,0.72);
  --transition: 0.3s ease-in-out;
  --error-color: #f87171;
  --success-color: #34d399;
  --warning-color: #f59e0b;
}

/* ───────────────────────────────────────────────────────────────────────
   RESET & BASE STYLES
   ─────────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #0a0b0f;
  color: #e2e4ef;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* Noise/grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.55;
}

/* ───────────────────────────────────────────────────────────────────────
   AMBIENT BACKGROUND ORBS
   ─────────────────────────────────────────────────────────────────────── */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

.bg-orb-1 {
  width: 560px;
  height: 560px;
  background: #7c3aed;
  top: -140px;
  left: -140px;
}

.bg-orb-2 {
  width: 400px;
  height: 400px;
  background: #4f46e5;
  bottom: -80px;
  right: -80px;
}

.bg-orb-3 {
  width: 280px;
  height: 280px;
  background: #8b5cf6;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
}

/* ───────────────────────────────────────────────────────────────────────
   GLASS MORPHISM & CARD STYLES
   ─────────────────────────────────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ───────────────────────────────────────────────────────────────────────
   SCROLLBAR STYLING
   ─────────────────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(139,92,246,0.35);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(139,92,246,0.55);
}

/* ───────────────────────────────────────────────────────────────────────
   TYPOGRAPHY & LABELS
   ─────────────────────────────────────────────────────────────────────── */
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.badge-beta {
  font-size: 10px;
  padding: 0.375rem 0.375rem;
  border-radius: 0.375rem;
  background: rgba(139,92,246,0.18);
  color: #a78bfa;
  letter-spacing: 0.05em;
}

/* ───────────────────────────────────────────────────────────────────────
   TEXT COLORS & UTILITIES
   ─────────────────────────────────────────────────────────────────────── */
.text-muted {
  color: #9ca3af;
}

.text-muted-dark {
  color: #374151;
}

.text-muted-light {
  color: #4b5563;
}

.text-hint {
  color: #4b5563;
}

.text-hint-light {
  color: #6b7280;
  font-weight: 400;
  font-size: 11px;
}

.text-accent {
  color: #a78bfa;
}

.text-error {
  color: #f87171;
}

/* ───────────────────────────────────────────────────────────────────────
   HEADER & TOPBAR
   ─────────────────────────────────────────────────────────────────────── */
.topbar {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#7c3aed,#4f46e5);
}

/* ───────────────────────────────────────────────────────────────────────
   BUTTONS
   ─────────────────────────────────────────────────────────────────────── */
.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.07);
}

.btn-icon:hover {
  background: rgba(139,92,246,0.1);
}

.btn-secondary {
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 13px;
  color: #6b7280;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition);
}

.btn-secondary:hover {
  color: #9ca3af;
  background: rgba(255,255,255,0.04);
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 60%, #5b21b6 100%);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(139,92,246,0.5);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}

.btn-eye:hover {
  color: #9ca3af;
}

.btn-adjust {
  width: 24px;
  height: 24px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  background: transparent;
  cursor: pointer;
}

.btn-adjust:hover {
  background: rgba(139,92,246,0.15);
  color: #a78bfa;
}

.btn-remove {
  margin-top: 8px;
  font-size: 12px;
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.btn-remove:hover {
  color: #ef4444;
}

.btn-tooltip {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: rgba(255,255,255,0.07);
  color: #6b7280;
  border: none;
  cursor: pointer;
}

.kbd {
  padding: 0.375rem 0.625rem;
  border-radius: 0.375rem;
  font-size: 11px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: monospace;
  display: inline-block;
}

/* ───────────────────────────────────────────────────────────────────────
   MODEL SELECTOR & SEGMENTED BUTTONS
   ─────────────────────────────────────────────────────────────────────── */
.model-selector {
  display: flex;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
}

.seg-btn {
  flex: 1;
  padding: 0.625rem;
  font-size: 14px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: #6b7280;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.seg-btn.active {
  background: var(--accent);
  box-shadow: 0 0 14px rgba(139,92,246,0.45);
  color: #fff;
}

/* ───────────────────────────────────────────────────────────────────────
   FORM ELEMENTS
   ─────────────────────────────────────────────────────────────────────── */
.api-key-input {
  width: 100%;
  padding: 0.625rem 0.75rem 0.625rem 0.75rem;
  padding-right: 2.5rem;
  border-radius: 0.75rem;
  font-size: 13px;
  font-family: monospace;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.09);
  color: #a1afc9;
  outline: none;
  transition: border-color var(--transition);
}

.api-key-input:focus {
  border-color: rgba(139,92,246,0.5);
}

.prompt-textarea {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 14px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  color: #cbd5e1;
  outline: none;
  transition: border-color var(--transition);
  resize: none;
  min-height: 96px;
  line-height: 1.6;
  field-sizing: content;
}

.prompt-textarea:focus {
  border-color: rgba(139,92,246,0.45);
}

.negative-prompt-textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 14px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  color: #9ca3af;
  outline: none;
  transition: border-color var(--transition);
  resize: none;
  min-height: 64px;
  line-height: 1.6;
  field-sizing: content;
}

.negative-prompt-textarea:focus {
  border-color: rgba(239,68,68,0.35);
}

.seed-input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 13px;
  font-family: monospace;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06);
  color: #9ca3af;
  outline: none;
  transition: border-color var(--transition);
  opacity: 0.45;
  cursor: not-allowed;
}

.seed-input:not(:disabled) {
  opacity: 1;
  cursor: text;
}

/* ───────────────────────────────────────────────────────────────────────
   RANGE SLIDERS
   ─────────────────────────────────────────────────────────────────────── */
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(to right, var(--accent) var(--pct,50%), rgba(255,255,255,0.12) var(--pct,50%));
  transition: background var(--transition);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 0 8px rgba(139,92,246,0.5);
  transition: box-shadow var(--transition);
}

input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 0 8px rgba(139,92,246,0.5);
  transition: box-shadow var(--transition);
}

input[type=range]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(139,92,246,0.3);
}

input[type=range]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(139,92,246,0.3);
}

/* ───────────────────────────────────────────────────────────────────────
   SIZE BUTTONS & ASPECT RATIOS
   ─────────────────────────────────────────────────────────────────────── */
.size-btn {
  padding: 0.375rem 0.625rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  color: #9ca3af;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.size-btn.active {
  background: rgba(139,92,246,0.22);
  border-color: rgba(139,92,246,0.6);
  color: #c4b5fd;
}

.size-btn:hover:not(.active) {
  border-color: rgba(139,92,246,0.35);
}

/* ───────────────────────────────────────────────────────────────────────
   TOGGLE SWITCH
   ─────────────────────────────────────────────────────────────────────── */
.label-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  font-size: 12px;
  color: #6b7280;
  transition: color var(--transition);
}

.label-toggle:hover {
  color: #9ca3af;
}

.toggle-switch {
  width: 32px;
  height: 16px;
  border-radius: 999px;
  background: rgba(139,92,246,0.6);
  position: relative;
  transition: background var(--transition);
  cursor: pointer;
}

.toggle-switch.active {
  background: var(--accent);
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  transition: all var(--transition);
}

.toggle-switch.active .toggle-thumb {
  right: auto;
  left: 2px;
}

/* ───────────────────────────────────────────────────────────────────────
   DRAG & DROP ZONES
   ─────────────────────────────────────────────────────────────────────── */
.drop-zone {
  border: 1.5px dashed rgba(139,92,246,0.35);
  transition: all var(--transition);
}

.drop-zone.drag-over {
  border-color: var(--accent);
  background: rgba(139,92,246,0.08);
  box-shadow: 0 0 18px rgba(139,92,246,0.18);
}

.icon-box {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,92,246,0.12);
}

.image-thumb {
  margin: 0 auto;
  border-radius: 1rem;
  object-fit: cover;
  width: 80px;
  height: 80px;
  user-select: none;
  -webkit-user-drag: none;
}

.image-thumb:disabled {
  pointer-events: none;
}

/* ───────────────────────────────────────────────────────────────────────
   STATUS & LOADING
   ─────────────────────────────────────────────────────────────────────── */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success-color);
  transition: background var(--transition);
}

.status-dot.generating {
  background: var(--warning-color);
}

/* ───────────────────────────────────────────────────────────────────────
   ANIMATIONS & LOADERS
   ─────────────────────────────────────────────────────────────────────── */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 12px 2px rgba(139,92,246,0.25);
  }
  50% {
    box-shadow: 0 0 30px 8px rgba(139,92,246,0.55);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

.orbit-ring {
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: orbit 1.1s linear infinite;
}

.anim-fade-in {
  animation: fadeIn 0.4s ease forwards;
}

.anim-slide-up {
  animation: slideUp 0.35s ease forwards;
}

.shake {
  animation: shake 0.4s ease;
}

/* ───────────────────────────────────────────────────────────────────────
   LOADING STATE
   ─────────────────────────────────────────────────────────────────────── */
.loading-spinner {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.pulse-inner {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,rgba(124,58,237,0.3),rgba(79,70,229,0.3));
  border: 1px solid rgba(139,92,246,0.25);
}

.icon-large {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,rgba(124,58,237,0.22),rgba(79,70,229,0.22));
  border: 1px solid rgba(139,92,246,0.2);
}

/* ───────────────────────────────────────────────────────────────────────
   PROGRESS STEPS
   ─────────────────────────────────────────────────────────────────────── */
.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #4b5563;
  transition: color var(--transition);
}

.step-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  transition: all var(--transition);
}

.step-num,
.step-check {
  font-weight: 600;
}

.step-check.hidden {
  display: none;
}

/* ───────────────────────────────────────────────────────────────────────
   ERROR STATE
   ─────────────────────────────────────────────────────────────────────── */
.error-state {
  border-color: rgba(239,68,68,0.2);
}

.error-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  background: rgba(239,68,68,0.12);
}

/* ───────────────────────────────────────────────────────────────────────
   CAROUSEL
   ─────────────────────────────────────────────────────────────────────── */
.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-container {
  touch-action: pan-y;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.1);
  color: currentColor;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
}

.carousel-btn:hover:not(.hidden) {
  background: rgba(139,92,246,0.2);
  border-color: rgba(139,92,246,0.3);
}

.carousel-btn-prev {
  left: 12px;
}

.carousel-btn-next {
  right: 12px;
}

.carousel-btn.hidden {
  display: none;
}

/* Dot indicators */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(139,92,246,0.35);
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 999px;
}

/* ───────────────────────────────────────────────────────────────────────
   TOOLTIP
   ─────────────────────────────────────────────────────────────────────── */
.tooltip-wrapper {
  position: relative;
  display: inline-flex;
}

.tooltip-box {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.92);
  background: #1e2235;
  border: 1px solid rgba(139,92,246,0.3);
  color: #c4c7e3;
  font-size: 11px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 10px;
  white-space: nowrap;
  max-width: 240px;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 50;
}

.tooltip-wrapper:hover .tooltip-box {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* ───────────────────────────────────────────────────────────────────────
   SETTINGS DRAWER
   ─────────────────────────────────────────────────────────────────────── */
.settings-drawer {
  transition: transform var(--transition), opacity var(--transition);
  border-color: rgba(255,255,255,0.06);
}

.settings-drawer.hidden-drawer {
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
}

/* ───────────────────────────────────────────────────────────────────────
   TOAST NOTIFICATIONS
   ─────────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  border-radius: 0.75rem;
  font-size: 14px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--glass-shadow);
  animation: slideUp 0.3s ease forwards;
  transition: all var(--transition);
}

.toast.hidden {
  display: none;
}

/* ───────────────────────────────────────────────────────────────────────
   LAYOUT & RESPONSIVE
   ─────────────────────────────────────────────────────────────────────── */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 1024px) {
  .sidebar-layout {
    grid-template-columns: 400px 1fr;
  }
}

/* Download button on carousel slides */
.carousel-slide button {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: #a78bfa;
}

.carousel-slide button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 24px 2px rgba(139,92,246,0.28);
}

/* Image number badge */
.carousel-slide .image-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  font-size: 12px;
  color: #a78bfa;
}

/* ───────────────────────────────────────────────────────────────────────
   INPUT TAB SYSTEM (File/URL/Base64)
   ─────────────────────────────────────────────────────────────────────── */
.input-tab-btn {
  padding: 4px 8px;
  font-size: 11px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: #6b7280;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all var(--transition);
}

.input-tab-btn:hover {
  color: #e2e4ef;
  border-color: rgba(139,92,246,0.3);
}

.input-tab-btn.active {
  background: rgba(139,92,246,0.15);
  color: #c4b5fd;
  border-color: rgba(139,92,246,0.5);
}

/* Input mode containers */
.input-mode-active {
  display: block;
}

.input-mode-hidden {
  display: none;
}

/* URL & Base64 input fields */
.url-input,
.base64-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09) !important;
  color: #e2e4ef;
  transition: all var(--transition);
}

.url-input::placeholder,
.base64-input::placeholder {
  color: #6b7280;
}

.url-input:focus,
.base64-input:focus {
  outline: none;
  background: rgba(255,255,255,0.08);
  border-color: rgba(139,92,246,0.5) !important;
  box-shadow: 0 0 12px rgba(139,92,246,0.15);
}

.base64-input {
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.4;
}
