/* ==============================================================================
   Project: redShadow
   License: shadowplays.de
   Copyright (c) 2026 shadowplays.de. All rights reserved.
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

body {
  font-family: var(--font-sans);
}

pre, code, .font-mono {
  font-family: var(--font-mono);
}

/* Custom subtle scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #090d16;
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Glassmorphism panel */
.glass-panel {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Inline editable cells */
.editable-cell {
  transition: all 0.15s ease-in-out;
  border-radius: 4px;
  padding: 2px 6px;
}

.editable-cell:hover {
  background: rgba(244, 63, 94, 0.08);
  outline: 1px dashed rgba(244, 63, 94, 0.4);
}

.editable-cell:focus {
  background: rgba(15, 23, 42, 0.95);
  outline: 2px solid #f43f5e;
}

/* Glowing badge animation */
@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

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

/* Inline Description Clamping */
.desc-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.desc-expanded {
  display: block;
}
