:root {
  /* Surfaces & Backgrounds */
  --bg: #090c15;
  --sidebar: #0f1322;
  --panel: #141a2f;
  --panel-hover: #1b233e;
  --panel-active: #222c4d;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  /* Typography */
  --text: #f1f3f9;
  --muted: #8e9bb4;
  --faint: #5a667f;

  /* Theme Accents (vibrant tailored palette) */
  --primary: #8b5cf6;
  --primary-hover: #a78bfa;
  --primary-soft: rgba(139, 92, 246, 0.12);
  --accent: #06b6d4;
  --accent-soft: rgba(6, 182, 212, 0.12);
  
  --success: #10b981;
  --success-soft: rgba(16, 185, 129, 0.12);
  --danger: #f43f5e;
  --danger-soft: rgba(244, 63, 94, 0.12);
  --warn: #f59e0b;
  --warn-soft: rgba(245, 158, 11, 0.12);

  /* Radius & Shadows */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px 0 rgba(0, 0, 0, 0.7);
  --backdrop-blur: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: 
    radial-gradient(1000px 500px at 70% 10%, rgba(139, 92, 246, 0.12), transparent 50%),
    radial-gradient(800px 400px at 15% 90%, rgba(6, 182, 212, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

/* ============ APP SHELL ============ */
.app {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

/* ============ SIDEBAR ============ */
.sidebar {
  background: var(--sidebar);
  border-right: 1px solid var(--border);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 28px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 24px -4px rgba(139, 92, 246, 0.5);
}

.brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-text strong {
  font-weight: 800;
  color: var(--accent);
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.side-nav .tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.side-nav .tab:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.side-nav .tab.active {
  background: var(--primary-soft);
  color: var(--primary-hover);
  border-color: rgba(139, 92, 246, 0.15);
  font-weight: 600;
}

.side-nav .tab .ico {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-account {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.side-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 12px;
}

.side-user .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.side-user-meta {
  flex-grow: 1;
  min-width: 0;
}

.side-user-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-user-role {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.side-account-actions {
  display: flex;
  gap: 8px;
}

/* ============ MAIN CONTENT ============ */
.main-content {
  padding: 40px;
  overflow-y: auto;
  height: 100vh;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

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

.view-header {
  margin-bottom: 32px;
}

.view-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.muted {
  color: var(--muted);
}

.faint {
  color: var(--faint);
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* ============ GENERAL CARDS ============ */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

/* ============ KPI DASHBOARD ============ */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.kpi-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  backdrop-filter: blur(var(--backdrop-blur));
  background: rgba(20, 26, 47, 0.6);
}

.kpi-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.kpi-icon .ico {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.income-bg { background: var(--success-soft); color: var(--success); }
.expense-bg { background: var(--danger-soft); color: var(--danger); }
.net-bg { background: var(--accent-soft); color: var(--accent); }
.budget-bg { background: var(--primary-soft); color: var(--primary-hover); }

.kpi-content {
  display: flex;
  flex-direction: column;
}

.kpi-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kpi-value {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.widget-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.widget-row:last-child {
  grid-template-columns: 1fr;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.widget-header h2 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.chart-container {
  position: relative;
  width: 100%;
}

/* ============ BUDGET PROGRESS BARS ============ */
.budget-bars-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.budget-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.budget-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}

.progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--primary);
  width: 0%;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-fill.warn { background: var(--warn); }
.progress-fill.danger { background: var(--danger); }

/* ============ DATA TABLES ============ */
.table-card {
  padding: 0;
  overflow: hidden;
}

.filter-bar {
  background: rgba(20, 26, 47, 0.6);
  backdrop-filter: blur(var(--backdrop-blur));
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-group label, .styled-dialog label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

select, input[type="text"], input[type="number"], input[type="password"], input[type="date"], input[type="datetime-local"], textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: all 0.25s ease;
}

select:focus, input:focus, textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.data-table th, .data-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: rgba(255, 255, 255, 0.01);
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.data-table tbody tr {
  transition: background 0.15s ease;
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.actions-col {
  text-align: right;
}

/* ============ BUTTONS ============ */
.btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.btn.primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.4);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-color: var(--border);
}

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

.btn.danger {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: rgba(244, 63, 94, 0.15);
}

.btn.danger:hover {
  background: var(--danger);
  color: #fff;
}

.btn.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
}

.btn.full {
  width: 100%;
  justify-content: center;
}

.btn.small {
  padding: 5px 10px;
  font-size: 11px;
}

button.ghost {
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

button.ghost:hover {
  color: var(--text);
}

button.ghost.small {
  font-size: 11px;
}

button.ghost.danger:hover {
  color: var(--danger);
}

/* ============ SPLIT VIEW FOR MEETINGS ============ */
.split-view {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  height: calc(100vh - 180px);
}

.view-list-panel {
  padding: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.view-list-panel .border-bottom {
  border-bottom: 1px solid var(--border);
}

.meetings-master-list {
  flex-grow: 1;
  overflow-y: auto;
}

.meeting-list-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.meeting-list-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.meeting-list-item.active {
  background: rgba(139, 92, 246, 0.05);
}

.meeting-list-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
}

.meeting-item-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meeting-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

/* Detail Panel */
.view-detail-panel {
  overflow-y: auto;
  padding: 28px;
}

.detail-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted);
  gap: 12px;
}

.large-ico {
  width: 48px;
  height: 48px;
  stroke: var(--faint);
  stroke-width: 1.5;
  fill: none;
}

.meeting-detail-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.meeting-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.meeting-title-row h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.meeting-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  font-size: 13px;
}

.meeting-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.meeting-meta-item .ico {
  width: 16px;
  height: 16px;
  stroke: var(--faint);
  stroke-width: 2;
  fill: none;
}

/* Detail sections */
.detail-section {
  margin-bottom: 32px;
}

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

.detail-section-header h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Agenda list */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agenda-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.agenda-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.agenda-number {
  background: var(--primary-soft);
  color: var(--primary-hover);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.agenda-item-title {
  font-size: 13.5px;
  font-weight: 600;
  margin-left: 8px;
}

.agenda-item-desc {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  padding-left: 36px;
}

/* Attendees list */
.attendees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.attendee-badge {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.attendee-info {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.attendee-name {
  font-weight: 600;
}

.attendee-role {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

/* Resolutions list */
.resolutions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resolution-card {
  border-left: 3px solid var(--primary);
  background: rgba(255, 255, 255, 0.01);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
}

.resolution-text {
  font-weight: 500;
  margin-bottom: 6px;
}

.resolution-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--muted);
}

/* Attachments list */
.attachments-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.attachment-badge {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  transition: all 0.2s ease;
}

.attachment-badge:hover {
  border-color: var(--primary-soft);
  background: rgba(139, 92, 246, 0.03);
}

.attachment-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  margin-right: 8px;
}

.attachment-link:hover {
  color: var(--primary-hover);
}

/* ============ BADGES & TAGS ============ */
.badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 12px;
  display: inline-block;
  letter-spacing: 0.02em;
}

.badge.income { background: var(--success-soft); color: var(--success); }
.badge.expense { background: var(--danger-soft); color: var(--danger); }

.badge.scheduled { background: var(--warn-soft); color: var(--warn); }
.badge.completed { background: var(--success-soft); color: var(--success); }
.badge.cancelled { background: var(--danger-soft); color: var(--danger); }

.badge.present { background: var(--success-soft); color: var(--success); }
.badge.absent { background: var(--danger-soft); color: var(--danger); }
.badge.excused { background: var(--primary-soft); color: var(--primary-hover); }

.badge.pending { background: var(--warn-soft); color: var(--warn); }
.badge.in_progress { background: var(--primary-soft); color: var(--primary-hover); }
.badge.completed-res { background: var(--success-soft); color: var(--success); }
.badge.failed { background: var(--danger-soft); color: var(--danger); }

/* ============ MODALS / DIALOGS ============ */
.styled-dialog {
  margin: auto;
  border: 1px solid var(--border-strong);
  background: rgba(20, 26, 47, 0.95);
  backdrop-filter: blur(24px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: var(--text);
  width: 100%;
  max-width: 480px;
  outline: none;
  overflow: hidden;
}

.styled-dialog::backdrop {
  background: rgba(5, 7, 13, 0.7);
  backdrop-filter: blur(8px);
}

.dialog-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dialog-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease;
}

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

.styled-dialog form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dialog-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.form-error {
  color: var(--danger);
  font-size: 12px;
  font-weight: 500;
}

.styled-dialog label input, .styled-dialog label select, .styled-dialog label textarea {
  width: 100%;
  margin-top: 6px;
}

/* Category manager layout inside dialog */
.categories-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  height: 400px;
}

.category-add-section {
  padding: 20px;
  border-right: 1px solid var(--border);
}

.category-add-section h3, .category-list-section h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 16px;
}

.category-list-section {
  padding: 20px;
  overflow-y: auto;
}

.category-lists-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.category-column h4 {
  font-size: 11px;
  color: var(--faint);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cats-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cats-list li {
  font-size: 12.5px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cats-list li button {
  background: transparent;
  border: none;
  color: var(--faint);
  cursor: pointer;
  font-size: 12px;
}

.cats-list li button:hover {
  color: var(--danger);
}

/* File Upload custom style */
.file-tip {
  font-size: 10.5px;
  color: var(--faint);
  margin-top: 4px;
}

.current-attachment-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-strong);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.attachment-text {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.attachment-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.attachment-text a:hover {
  text-decoration: underline;
}

/* ============ PORTAL/LOGIN SHELL ============ */
.portal-center {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 20px;
}

.login-card {
  background: rgba(20, 26, 47, 0.85);
  backdrop-filter: blur(32px);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  animation: fadeIn 0.4s ease;
}

.login-card .brand.center {
  justify-content: center;
  padding-bottom: 12px;
}

.login-sub {
  text-align: center;
  font-size: 13px;
  margin-bottom: 28px;
}

.login-card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.login-card input {
  padding: 10px 14px;
}

/* ============ MISC UTILITIES ============ */
.pad-empty {
  padding: 48px;
  text-align: center;
}

.border-bottom {
  border-bottom: 1px solid var(--border);
}

.styled-select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
}

/* ============ LANGUAGE SELECTOR ============ */
.side-lang-container {
  border-top: 1px solid var(--border);
  padding: 16px 8px 8px;
}

.lang-selector {
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.lang-selector:hover, .lang-selector:focus {
  border-color: var(--primary);
  background: var(--panel-hover);
}
