/* =====================================================================
   NOMAD SEARCH – Global Design System
   Author: Paweł Syrowy
   Description: Unified CSS system for the entire application.
                Edit the variables in the :root section to adjust the theme.
   ===================================================================== */

/* =====================================================================
   1. GOOGLE FONTS
   ===================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* =====================================================================
   2. CSS VARIABLES – DESIGN TOKENS
   ===================================================================== */
:root {
  /* --- Warm gold (brand primary warm) --- */
  --clr-gold: #edcd94; /* Primary gold – used in headers and accents */
  --clr-gold-light: #fbeedd; /* Very light gold – footer and card backgrounds */
  --clr-gold-dark: #d4a852; /* Darker gold – hover on gold elements */
  --clr-gold-xlight: #fff8ee; /* Near-white gold – section backgrounds */

  /* --- Paradise teal (brand primary cool) --- */
  --clr-teal: #2caebb; /* Primary teal – buttons, links, active elements */
  --clr-teal-light: #82dae4; /* Light teal – footer backgrounds, hover states */
  --clr-teal-dark: #26959f; /* Dark teal – button active state */
  --clr-teal-xdark: #075e89; /* Very dark teal/navy – deeplinks, badges */
  --clr-teal-muted: #b8e8ee; /* Muted teal – disabled states, subtle accents */

  /* --- Backgrounds and surfaces --- */
  --clr-bg: #f0f5fb; /* Main page background (light grey-blue) */
  --clr-surface: #ffffff; /* Card and panel background */
  --clr-surface-2: #f8f9fa; /* Secondary background – hover rows, alternating rows */
  --clr-overlay: rgba(0, 0, 0, 0.45); /* Overlay for modals */

  /* --- Text --- */
  --clr-text: #1a1a1a; /* Primary text */
  --clr-text-2: #444444; /* Secondary text */
  --clr-text-muted: #6c757d; /* Muted text – meta info, captions */
  --clr-text-inverse: #ffffff; /* Text on dark background */
  --clr-link: var(--clr-teal-dark); /* Default link color */

  /* --- Borders --- */
  --clr-border: #dee2e6; /* Subtle divider line */
  --clr-border-2: #c8d0d8; /* More prominent divider */

  /* --- Semantic states --- */
  --clr-success: #28a745;
  --clr-danger: #dc3545;
  --clr-warning: #ffc107;
  --clr-info: var(--clr-teal);

  /* --- Header --- */
  --header-h: 64px; /* Header height – change here to adjust */
  --header-grad-from: var(--clr-gold); /* Header gradient – from top */
  --header-grad-to: var(--clr-teal); /* Header gradient – to bottom */

  /* --- Footer --- */
  --footer-grad-from: var(--clr-gold-light); /* Footer gradient – from top */
  --footer-grad-to: var(--clr-teal-light); /* Footer gradient – to bottom */

  /* --- Typography --- */
  --font-primary: "Poppins", sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-base: 1.6;

  /* --- Spacing scale --- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;

  /* --- Border radii --- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px; /* Fully rounded – buttons, tags */
  --radius-circle: 50%;

  /* --- Shadows --- */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.18);
  /* Branded color shadows */
  --shadow-teal: 0 4px 16px rgba(44, 174, 187, 0.28);
  --shadow-gold: 0 4px 16px rgba(237, 205, 148, 0.45);

  /* --- Transitions --- */
  --tr-fast: 0.15s ease;
  --tr-normal: 0.25s ease;
  --tr-slow: 0.4s ease;

  /* --- Z-index layer stack --- */
  --z-dropdown: 200;
  --z-sticky: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-toast: 600;
}

/* =====================================================================
   3. RESET & BASE
   ===================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* Removes link underlines globally */
a {
  text-decoration: none;
  color: var(--clr-link);
  transition: color var(--tr-fast);
}

a:hover {
  color: var(--clr-teal-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================================================
   4. TYPOGRAPHY – utility classes
   ===================================================================== */

/* Section heading (e.g. "All Hotels") */
.ns-heading {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--clr-text);
}

/* Subtitle, meta lines */
.ns-subheading {
  font-size: var(--font-size-sm);
  color: var(--clr-text-muted);
  font-weight: var(--font-weight-normal);
}

/* Text on brand background (header, badges) */
.text-brand {
  color: var(--clr-teal);
}

/* =====================================================================
   5. NS BUTTONS – consistent system
   ===================================================================== */

/* Base button style – overrides Bootstrap */
.btn-ns {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 22px;
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--tr-normal),
    border-color var(--tr-normal),
    color var(--tr-normal),
    transform var(--tr-fast),
    box-shadow var(--tr-normal);
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}

.btn-ns:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ns:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Primary – teal */
.btn-ns-primary {
  background-color: var(--clr-teal);
  border-color: var(--clr-teal);
  color: var(--clr-text-inverse);
}

.btn-ns-primary:hover {
  background-color: var(--clr-gold);
  border-color: var(--clr-gold-dark);
  color: var(--clr-text);
  box-shadow: var(--shadow-gold);
}

.btn-ns-primary:active,
.btn-ns-primary:focus-visible {
  background-color: var(--clr-teal-dark);
  border-color: var(--clr-teal-dark);
  color: var(--clr-text-inverse);
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 174, 187, 0.3);
}

/* Secondary – teal outline */
.btn-ns-outline {
  background-color: transparent;
  border-color: var(--clr-teal);
  color: var(--clr-teal-dark);
}

.btn-ns-outline:hover {
  background-color: var(--clr-teal);
  color: var(--clr-text-inverse);
  box-shadow: var(--shadow-teal);
}

/* Gold accent – special CTA */
.btn-ns-gold {
  background-color: var(--clr-gold);
  border-color: var(--clr-gold-dark);
  color: var(--clr-text);
}

.btn-ns-gold:hover {
  background-color: var(--clr-teal);
  border-color: var(--clr-teal);
  color: var(--clr-text-inverse);
  box-shadow: var(--shadow-teal);
}

/* Small button */
.btn-ns-sm {
  padding: 6px 14px;
  font-size: var(--font-size-xs);
}

/* Large button */
.btn-ns-lg {
  padding: 14px 32px;
  font-size: var(--font-size-md);
}

/* Danger (delete, reject) */
.btn-ns-danger {
  background-color: var(--clr-danger);
  border-color: var(--clr-danger);
  color: var(--clr-text-inverse);
}

.btn-ns-danger:hover {
  background-color: #b02a37;
  border-color: #b02a37;
  color: var(--clr-text-inverse);
}

/* =====================================================================
   6. HOTEL AND BLOG CARDS
   ===================================================================== */

/* Base card */
.ns-card {
  background-color: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--tr-normal),
    transform var(--tr-normal);
  border: 1px solid var(--clr-border);
}

.ns-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Hotel card image */
.ns-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform var(--tr-slow);
}

.ns-card:hover .ns-card-img {
  transform: scale(1.04);
}

/* Card body */
.ns-card-body {
  padding: var(--sp-5) var(--sp-6);
}

.ns-card-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  color: var(--clr-teal-xdark);
  margin-bottom: var(--sp-2);
  line-height: 1.35;
}

.ns-card-title:hover {
  color: var(--clr-teal);
}

.ns-card-meta {
  font-size: var(--font-size-xs);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-3);
}

/* =====================================================================
   7. LOCATION TAGS (Location Tabs/Pills)
   ===================================================================== */

/* Container with horizontal scroll */
.ns-location-bar {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-1);
  margin-bottom: var(--sp-4);
  /* Hides scrollbars visually while preserving functionality */
  scrollbar-width: thin;
  scrollbar-color: var(--clr-teal-muted) transparent;
  -webkit-overflow-scrolling: touch;
}

.ns-location-bar::-webkit-scrollbar {
  height: 4px;
}

.ns-location-bar::-webkit-scrollbar-track {
  background: transparent;
}

.ns-location-bar::-webkit-scrollbar-thumb {
  background-color: var(--clr-teal-muted);
  border-radius: var(--radius-pill);
}

/* Single tag (pill) */
.ns-location-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid var(--clr-border);
  background-color: var(--clr-surface);
  color: var(--clr-text-2);
  transition: all var(--tr-fast);
  text-decoration: none;
}

.ns-location-pill:hover {
  border-color: var(--clr-teal);
  color: var(--clr-teal-dark);
  background-color: rgba(44, 174, 187, 0.05);
}

/* Active tag (selected continent / country) */
.ns-location-pill.active {
  background-color: var(--clr-teal);
  border-color: var(--clr-teal);
  color: var(--clr-text-inverse);
  font-weight: var(--font-weight-semibold);
  box-shadow: var(--shadow-teal);
}

/* =====================================================================
   8. BADGES (Stars, Type, etc.)
   ===================================================================== */

.ns-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
}

.ns-badge-teal {
  background-color: rgba(44, 174, 187, 0.12);
  color: var(--clr-teal-dark);
}

.ns-badge-gold {
  background-color: rgba(237, 205, 148, 0.35);
  color: #8a6508;
}

.ns-badge-star {
  background-color: #fff8e1;
  color: #f59e0b;
}

/* =====================================================================
   9. STAR RATING
   ===================================================================== */

.ns-stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.ns-star {
  font-size: 20px;
  cursor: pointer;
  color: #d1d5db; /* Empty star – grey */
  transition:
    color var(--tr-fast),
    transform var(--tr-fast);
  line-height: 1;
}

.ns-star.filled,
.ns-star.hover {
  color: #f59e0b; /* Filled star – gold */
}

.ns-star:hover {
  transform: scale(1.2);
}

/* Readonly rating */
.ns-stars-readonly .ns-star {
  cursor: default;
  font-size: 18px;
}

.ns-stars-readonly .ns-star:hover {
  transform: none;
}

/* =====================================================================
   10. NS FORMS
   ===================================================================== */

.ns-form-group {
  margin-bottom: var(--sp-5);
}

.ns-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--clr-text-2);
  margin-bottom: var(--sp-2);
}

.ns-input,
.ns-textarea,
.ns-select {
  width: 100%;
  padding: 10px var(--sp-4);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--clr-text);
  background-color: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition:
    border-color var(--tr-fast),
    box-shadow var(--tr-fast);
  outline: none;
}

.ns-input:focus,
.ns-textarea:focus,
.ns-select:focus {
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px rgba(44, 174, 187, 0.18);
}

.ns-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Blazor validation states */
input.valid,
textarea.valid,
select.valid {
  border-color: var(--clr-success);
}

input.invalid,
textarea.invalid,
select.invalid {
  border-color: var(--clr-danger);
}

.validation-message {
  display: block;
  margin-top: var(--sp-1);
  font-size: var(--font-size-xs);
  color: var(--clr-danger);
}

/* =====================================================================
   11. HOTEL DETAILS TABLE
   ===================================================================== */

.ns-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.ns-details-table th,
.ns-details-table td {
  padding: 10px var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
  vertical-align: middle;
}

.ns-details-table th {
  font-weight: var(--font-weight-semibold);
  color: var(--clr-text-2);
  background-color: var(--clr-surface-2);
  width: 40%;
}

.ns-details-table td {
  color: var(--clr-text);
}

.ns-details-table tr:last-child th,
.ns-details-table tr:last-child td {
  border-bottom: none;
}

/* =====================================================================
   12. PAGINATION
   ===================================================================== */

.ns-pagination {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  justify-content: flex-end;
}

.ns-pagination .ns-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--clr-teal);
  background: var(--clr-surface);
  color: var(--clr-teal-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  transition: all var(--tr-fast);
  cursor: pointer;
}

.ns-pagination .ns-page-btn:hover {
  background-color: var(--clr-teal);
  color: var(--clr-text-inverse);
  box-shadow: var(--shadow-teal);
}

.ns-pagination .ns-page-btn:disabled,
.ns-pagination .ns-page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* =====================================================================
   13. LOADER / SKELETON
   ===================================================================== */

.ns-loader-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-8) 0;
  color: var(--clr-text-muted);
  font-size: var(--font-size-sm);
}

.ns-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--clr-teal-muted);
  border-top-color: var(--clr-teal);
  border-radius: var(--radius-circle);
  animation: ns-spin 0.7s linear infinite;
}

@keyframes ns-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================================
   14. ALERTS AND NOTIFICATIONS
   ===================================================================== */

.ns-alert {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
  margin-bottom: var(--sp-4);
}

.ns-alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #155724;
}

.ns-alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #721c24;
}

.ns-alert-info {
  background-color: rgba(44, 174, 187, 0.1);
  border: 1px solid rgba(44, 174, 187, 0.3);
  color: var(--clr-teal-xdark);
}

.ns-alert-warning {
  background-color: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #856404;
}

/* =====================================================================
   15. ADMIN PANEL – specific elements
   ===================================================================== */

.ns-admin-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.ns-admin-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-xdark));
  color: var(--clr-text-inverse);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Admin statistics card */
.ns-stat-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  text-align: center;
  transition:
    box-shadow var(--tr-normal),
    transform var(--tr-normal);
}

.ns-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.ns-stat-number {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  color: var(--clr-teal-dark);
  line-height: 1.1;
  margin-bottom: var(--sp-2);
}

.ns-stat-label {
  font-size: var(--font-size-sm);
  color: var(--clr-text-muted);
}

/* =====================================================================
   16. BLAZOR ERROR UI (bottom connection error bar)
   ===================================================================== */

#blazor-error-ui {
  background: var(--clr-gold-light);
  color: var(--clr-text);
  border-top: 1px solid var(--clr-gold-dark);
  bottom: 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  display: none;
  left: 0;
  padding: 10px 20px 12px 20px;
  position: fixed;
  width: 100%;
  z-index: var(--z-toast);
  font-size: var(--font-size-sm);
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 18px;
  opacity: 0.6;
}

#blazor-error-ui .dismiss:hover {
  opacity: 1;
}

/* =====================================================================
   18. RESPONSIVENESS – Global breakpoints
   ===================================================================== */

/* Main container */
.ns-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

/* Hotels grid */
.ns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 576px) {
  .ns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .ns-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ns-container {
    padding: 0 var(--sp-6);
  }
}

@media (min-width: 1200px) {
  .ns-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =====================================================================
   19. UTILITIES – helper classes
   ===================================================================== */

/* Brand backgrounds */
.bg-teal {
  background-color: var(--clr-teal) !important;
}
.bg-gold {
  background-color: var(--clr-gold) !important;
}

/* Text colors */
.text-teal {
  color: var(--clr-teal) !important;
}
.text-teal-dark {
  color: var(--clr-teal-dark) !important;
}
.text-gold {
  color: var(--clr-gold-dark) !important;
}

/* Separator */
.ns-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: var(--sp-6) 0;
}

/* Brand gradient line */
.ns-divider-brand {
  border: none;
  height: 2px;
  background: linear-gradient(to right, var(--clr-gold), var(--clr-teal));
  margin: var(--sp-6) 0;
}

/* Section spacing */
.ns-section {
  padding: var(--sp-10) 0;
}

/* Hide on mobile */
@media (max-width: 767px) {
  .ns-hide-mobile {
    display: none !important;
  }
}

/* Hide on desktop */
@media (min-width: 768px) {
  .ns-hide-desktop {
    display: none !important;
  }
}

/* =====================================================================
   20. SHARED ANIMATIONS
   ===================================================================== */

@keyframes ns-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ns-fade-in {
  animation: ns-fade-in 0.35s ease both;
}

/* =====================================================================
   21. HERO STRIP – gradient banner used at the top of every content page
   ===================================================================== */

/* Full-width gradient banner at the top of content pages (hotel list,
   blog, contact, statistics, submit, my submissions, author pages). */
.ns-hero {
  background: linear-gradient(
    135deg,
    var(--clr-gold-xlight) 0%,
    var(--clr-teal-muted) 100%
  );
  padding: 36px 0 28px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--clr-border);
}

/* Large bold heading inside the hero strip */
.ns-hero-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: var(--font-weight-bold);
  color: var(--clr-teal-xdark);
  margin-bottom: 8px;
}

/* Subtitle / tagline text below the hero heading */
.ns-hero-sub {
  font-size: var(--font-size-sm);
  color: var(--clr-text-muted);
}

/* =====================================================================
   22. LIST HEADER – heading + pagination controls row
   ===================================================================== */

/* Flex row that places the page heading on the left and pagination
   controls on the right; wraps to two lines on narrow screens. */
.ns-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* =====================================================================
   23. STANDALONE PAGINATION BUTTON – Prev / Next pill link
   ===================================================================== */

/* Pill-shaped navigation link used outside the .ns-pagination context
   (e.g. in author-hotels and blog pages where the button appears inline).
   Works alongside the existing .ns-pagination .ns-page-btn rule. */
.ns-page-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--clr-teal);
  background: var(--clr-surface);
  color: var(--clr-teal-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: all var(--tr-fast);
}

.ns-page-btn:hover {
  background: var(--clr-teal);
  color: var(--clr-text-inverse);
  box-shadow: var(--shadow-teal);
}

/* Centered bottom pagination row (appears below content grids) */
.ns-pagination-bottom {
  justify-content: center;
  margin-top: 8px;
}

/* =====================================================================
   END OF FILE – common.css
   Version 2.2 – NomadSearch Design System
   ===================================================================== */
