:root {
  --bg-dark: #0f172a;
  --card-bg: rgba(30, 41, 59, 0.7);
  --card-border: rgba(255, 255, 255, 0.1);
  --card-hover-border: rgba(99, 102, 241, 0.4);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent-primary: #6366f1;
  --accent-primary-hover: #4f46e5;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --success: #10b981;
  --danger: #ef4444;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Dynamic background glow orbs */
.app-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: #6366f1;
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: #a855f7;
  bottom: -150px;
  right: -150px;
  animation-delay: -5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: #ec4899;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 40px) scale(1.1); }
}

.app-container {
  max-width: 98%;
  width: 98%;
  margin: 0 auto;
  padding: 24px 1%;
  box-sizing: border-box;
}

/* Header */
.app-header {
  margin-bottom: 32px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-icon {
  font-size: 32px;
  background: var(--accent-gradient);
  border-radius: var(--radius-md);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand h1 {
  font-size: 24px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.header-actions {
  display: flex;
  gap: 10px;
}

/* Buttons */
.icon-btn, .icon-btn-text, .text-btn, .accent-btn, .secondary-btn, .primary-submit-btn, .tool-btn, .preset-btn {
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-fast);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-main);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.text-btn {
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  padding: 6px 10px;
}

.text-btn:hover {
  color: var(--text-main);
}

.text-btn.danger:hover {
  color: var(--danger);
}

.accent-btn {
  background: var(--accent-gradient);
  color: white;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.accent-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.accent-btn.small {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  color: var(--text-main);
  padding: 8px 16px;
  font-size: 13px;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Cards & Layout */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-glow);
  margin-bottom: 24px;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card-header-row h2 {
  font-size: 18px;
  font-weight: 700;
}

.sub-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.lang-badge {
  background: rgba(99, 102, 241, 0.2);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.4);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Input Area */
.input-wrapper {
  position: relative;
  margin-bottom: 16px;
}

textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  color: var(--text-main);
  padding: 16px 50px 16px 16px;
  font-size: 16px;
  resize: vertical;
  outline: none;
  transition: var(--transition-fast);
}

textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.input-tools {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tool-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-main);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.tool-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.tool-btn.listening {
  background: var(--danger);
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Preset suggestions */
.preset-suggestions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.preset-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.preset-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.preset-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
}

.preset-btn:hover {
  background: rgba(99, 102, 241, 0.15);
  color: var(--text-main);
  border-color: rgba(99, 102, 241, 0.3);
}

/* Persona Selection Grid */
.persona-selection-section {
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
  margin-bottom: 24px;
}

.persona-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 12px;
}

.title-with-count {
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-with-count h3 {
  font-size: 15px;
  font-weight: 700;
}

.count-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-primary);
}

.persona-bar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.persona-pills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.persona-pill {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
  position: relative;
}

.persona-pill:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-2px);
}

.persona-pill.selected {
  background: rgba(99, 102, 241, 0.12);
  border-color: var(--accent-primary);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.2);
}

.pill-info {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  flex: 1;
}

.pill-avatar {
  font-size: 22px;
  flex-shrink: 0;
}

.pill-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pill-name {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pill-tagline {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pill-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.persona-pill.selected .pill-checkbox {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.pill-delete-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 13px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 12px;
  transition: var(--transition-fast);
}

.pill-delete-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

/* Language Selectors Row */
.language-controls-row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.lang-selector-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.lang-toggle-pills {
  display: flex;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 3px;
  gap: 4px;
}

.lang-pill {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-pill:hover {
  color: var(--text-main);
}

.lang-pill.active {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

/* Sentence Count Selector */
.sentence-count-row {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.sentence-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sentence-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sentence-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.sentence-pill:hover {
  background: rgba(99, 102, 241, 0.15);
  color: var(--text-main);
  border-color: rgba(99, 102, 241, 0.4);
}

.sentence-pill.active {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Submit Row */
.submit-row {
  display: flex;
  justify-content: center;
}

.primary-submit-btn {
  background: var(--accent-gradient);
  color: white;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  width: 100%;
  max-width: 400px;
  justify-content: center;
}

.primary-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
}

.primary-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Answers Section */
.answers-section {
  margin-top: 32px;
  animation: fadeIn 0.4s ease-out;
}

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

.answers-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.current-question-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
}

.current-question-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.answers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
  gap: 28px;
  width: 100%;
}

.answers-grid.stacked-view {
  grid-template-columns: 1fr !important;
}

/* Answer Card */
.answer-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: visible;
  transition: var(--transition-fast);
}

.answer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--card-accent, var(--accent-primary));
}

.answer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.answer-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.card-avatar {
  font-size: 32px;
  background: rgba(255, 255, 255, 0.08);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-persona-meta h4 {
  font-size: 18px;
  font-weight: 700;
}

.card-persona-meta p {
  font-size: 13px;
  color: var(--text-muted);
}

.answer-card-body {
  font-size: 16px;
  color: #f1f5f9;
  line-height: 1.75;
  margin-bottom: 24px;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
}

.answer-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

.card-action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.card-action-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-main);
}

.source-tag {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* History */
.history-panel {
  margin-top: 32px;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.history-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.history-item:hover {
  border-color: var(--accent-primary);
  background: rgba(99, 102, 241, 0.08);
}

.history-item-q {
  font-weight: 600;
  font-size: 14px;
}

.history-item-time {
  font-size: 12px;
  color: var(--text-muted);
}

.empty-state {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  padding: 20px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* User Badge in Header */
.user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid var(--card-border);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.user-email {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.logout-btn {
  padding: 4px 8px;
  font-size: 12px;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.logout-btn:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #ffffff;
}

/* Authentication Card */
.auth-card {
  text-align: center;
  max-width: 440px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(99, 102, 241, 0.2);
}

.auth-header {
  margin-bottom: 20px;
}

.auth-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

.auth-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-main);
}

.auth-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.auth-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.g-btn-wrapper {
  display: flex;
  justify-content: center;
  min-height: 44px;
}

.manual-auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 4px 0;
}

.manual-auth-divider::before,
.manual-auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--card-border);
}

.manual-auth-divider span {
  padding: 0 10px;
}

.full-btn {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
}

.allowed-hint {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: left;
  line-height: 1.5;
}

.allowed-hint ul {
  margin-top: 6px;
  padding-left: 18px;
}

.allowed-hint code {
  color: var(--accent-secondary);
  font-size: 12px;
}

.modal-card {
  background: #1e293b;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  animation: modalPop 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.close-btn:hover {
  color: var(--text-main);
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.flex-1 {
  flex: 1;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

input[type="text"], input[type="password"], select {
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}

input[type="color"] {
  width: 100%;
  height: 40px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

input:focus, textarea:focus {
  border-color: var(--accent-primary);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.settings-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1e293b;
  border: 1px solid var(--accent-primary);
  color: var(--text-main);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 600;
  z-index: 2000;
  animation: slideUp 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

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

/* Responsive */
@media (max-width: 768px) {
  .answers-grid {
    grid-template-columns: 1fr;
  }
  .persona-pills-grid {
    grid-template-columns: 1fr;
  }
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
}
