/* ============================================================
   LeadMaps — Premium White Modern UI
   Font: Montserrat | Theme: Clean Professional
   ============================================================ */

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

:root {
  --blue: #1A73E8;
  --blue-dark: #1557B0;
  --blue-light: #E8F0FE;
  --green: #0F9D58;
  --green-light: #E6F4EA;
  --red: #D93025;
  --red-light: #FCE8E6;
  --orange: #F29900;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F4;
  --gray-200: #E8EAED;
  --gray-300: #DADCE0;
  --gray-400: #BDC1C6;
  --gray-500: #9AA0A6;
  --gray-600: #80868B;
  --gray-700: #5F6368;
  --gray-800: #3C4043;
  --gray-900: #202124;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--gray-50);
  color: var(--gray-900);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.3px;
}

.logo-text strong {
  color: var(--blue);
}

.badge-version {
  background: var(--blue-light);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0A0F1C 0%, #1A2744 50%, #0D1B4B 100%);
  padding: 64px 0 56px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(26,115,232,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(15,157,88,0.1) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(90deg, #4FC3F7, #1A73E8, #00BCD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  font-weight: 400;
  max-width: 580px;
  line-height: 1.7;
}

/* ── APP CONTAINER ── */
.app-container {
  padding-top: 32px;
  padding-bottom: 60px;
}

/* ── API NOTICE ── */
.api-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.api-notice-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.api-notice-body {
  flex: 1;
}

.api-notice-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.api-notice-body p {
  font-size: 13px;
  color: var(--gray-600);
}

.api-notice-body a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.btn-setup {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-setup:hover {
  background: #D68900;
}

/* ── API SETUP PANEL ── */
.api-setup-panel {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.panel-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

.close-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: var(--transition);
}

.close-btn:hover {
  background: var(--gray-300);
}

.panel-body {
  padding: 24px;
}

.panel-body label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* ── SEARCH PANEL ── */
.search-panel {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  overflow: hidden;
}

.search-panel-header {
  padding: 24px 28px 0;
  margin-bottom: 0;
}

.search-panel-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.search-panel-header p {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 400;
}

.search-form {
  padding: 24px 28px 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.label-icon {
  font-size: 14px;
}

.form-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
}

.form-input::placeholder {
  color: var(--gray-400);
  font-weight: 400;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▼';
  font-size: 9px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  pointer-events: none;
}

.form-select {
  cursor: pointer;
  padding-right: 36px;
}

/* ── QTY SELECTOR ── */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qty-btn:hover {
  background: var(--gray-200);
}

.qty-input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: center;
  font-weight: 700;
  flex: 1;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* ── RATING FILTER ── */
.rating-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 44px;
}

.range-input {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  outline: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(26,115,232,0.4);
}

.rating-display {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  min-width: 60px;
  text-align: right;
}

/* ── CHECKBOXES ── */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  background: #fff;
}

.checkbox-label input:checked + .checkmark {
  background: var(--blue);
  border-color: var(--blue);
}

.checkbox-label input:checked + .checkmark::after {
  content: '✓';
  font-size: 11px;
  color: #fff;
  font-weight: 700;
}

/* ── SEARCH ACTIONS ── */
.search-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.btn-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(26,115,232,0.35);
}

.btn-search:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,115,232,0.45);
}

.btn-search:active {
  transform: translateY(0);
}

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

.btn-icon {
  font-size: 16px;
}

.btn-reset {
  height: 48px;
  padding: 0 20px;
  background: transparent;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.btn-reset:hover {
  border-color: var(--gray-400);
  color: var(--gray-800);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.hint {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 2px;
}

/* ── INPUT GROUP ── */
.input-group {
  display: flex;
  gap: 8px;
}

.input-group .form-input {
  flex: 1;
}

/* ── PROGRESS ── */
.progress-wrapper {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

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

.progress-header span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

#progressCount {
  color: var(--blue);
}

.progress-bar-outer {
  width: 100%;
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #00BCD4);
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── RESULTS TOOLBAR ── */
.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 16px;
  flex-wrap: wrap;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.results-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  white-space: nowrap;
}

.filter-input {
  height: 38px;
  padding: 0 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-900);
  background: #fff;
  width: 260px;
  outline: none;
  transition: var(--transition);
}

.filter-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.10);
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-export {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 16px;
  border: 1.5px solid;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn-csv {
  background: var(--green-light);
  border-color: #A8D5B5;
  color: var(--green);
}

.btn-csv:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-pdf {
  background: #FEE8E8;
  border-color: #F5AFAF;
  color: var(--red);
}

.btn-pdf:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-copy {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-700);
}

.btn-copy:hover {
  background: var(--gray-200);
}

/* ── TABLE ── */
.results-wrapper {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.table-container {
  overflow-x: auto;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.results-table thead {
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
}

.results-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.results-table th.sortable {
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.results-table th.sortable:hover {
  color: var(--blue);
}

.sort-icon {
  font-size: 10px;
  opacity: 0.5;
}

.results-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.results-table tbody tr:hover {
  background: var(--blue-light);
}

.results-table tbody tr:last-child {
  border-bottom: none;
}

.results-table td {
  padding: 14px 16px;
  vertical-align: middle;
  color: var(--gray-800);
  font-weight: 500;
}

.results-table td:first-child {
  color: var(--gray-400);
  font-weight: 700;
  font-size: 12px;
  min-width: 40px;
}

.business-name {
  font-weight: 700;
  color: var(--gray-900);
  max-width: 200px;
}

.category-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.address-cell {
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--gray-600);
  font-weight: 400;
}

.phone-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-link:hover {
  text-decoration: underline;
}

.website-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.website-link:hover {
  text-decoration: underline;
}

.no-data {
  color: var(--gray-300);
  font-size: 18px;
}

.rating-cell {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.rating-value {
  font-weight: 700;
  color: var(--gray-900);
}

.rating-star {
  color: var(--orange);
}

.review-count {
  color: var(--gray-500);
  font-weight: 400;
  font-size: 12px;
  white-space: nowrap;
}

.status-open {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-light);
  color: var(--green);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.status-closed {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--red-light);
  color: var(--red);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.status-unknown {
  color: var(--gray-400);
  font-size: 11px;
}

.maps-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}

.maps-link:hover {
  background: var(--blue);
  color: #fff;
  transform: scale(1.1);
}

/* ── EMPTY / ERROR STATE ── */
.empty-state, .error-state {
  text-align: center;
  padding: 64px 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}

.empty-icon, .error-icon {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
}

.empty-state h3, .error-state h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.empty-state p, .error-state p {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ── FOOTER ── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.5);
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
}

.footer strong {
  color: #fff;
}

.footer-note {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.5;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--gray-900);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  white-space: nowrap;
  box-shadow: var(--shadow-xl);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── LOADING SPINNER ── */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 0 36px;
  }

  .hero-title {
    font-size: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .search-panel-header,
  .search-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .toolbar-left {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-input {
    width: 100%;
  }

  .toolbar-right {
    flex-wrap: wrap;
  }

  .btn-export span {
    display: none;
  }

  .api-notice {
    flex-wrap: wrap;
  }

  .search-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-search, .btn-reset {
    justify-content: center;
  }

  .stat-number {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 22px;
  }

  .toolbar-right {
    gap: 6px;
  }

  .btn-export {
    padding: 0 12px;
    font-size: 11px;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.results-table tbody tr {
  animation: fadeIn 0.25s ease forwards;
}
