
:root {
    /* Colors */
    --primary: #0071e3;
    --primary-hover: #0077ed;
    --secondary: #1d1d1f;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --text-light: #f5f5f7;
    --bg-primary: #ffffff;
    --bg-secondary: #fbfbfd;
    --bg-dark: #000000;
    --border: #d2d2d7;
    --border-light: #f5f5f7;
    --success: #00c852;
    --warning: #ff9500;
    --danger: #ff3b30;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* Solid icon styles */
.icon-yes {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1em;
}

.icon-no {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.1em;
}

.confidence-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.confidence-icon svg {
    vertical-align: middle;
}

/* Typography */
.display {
    font-size: 96px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.headline {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.003em;
}

.title {
    font-size: 32px;
    line-height: 1.125;
    font-weight: 600;
    letter-spacing: 0.004em;
}

.subtitle {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
}

.body-large {
    font-size: 19px;
    line-height: 1.4211;
    font-weight: 400;
    letter-spacing: 0.012em;
}

.body {
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
}

.caption {
    font-size: 14px;
    line-height: 1.42859;
    font-weight: 400;
    letter-spacing: -0.016em;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 9999;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-container {
    max-width: 1024px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar-brand-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 6px;
    color: white;
    font-size: 20px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.navbar-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.01em;
    opacity: 1;
    transition: var(--transition);
    position: relative;
}

.navbar-menu a:hover {
    opacity: 1;
}

.navbar-menu a.active {
    opacity: 1;
}

.navbar-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    height: 1px;
    
    background: var(--text-primary);
}
/* --- Wave effect on navbar links --- */
.navbar-menu a {
  transition: font-weight 140ms ease, transform 140ms ease, opacity 140ms ease;
}

/* center (mouse) */
.navbar-menu a.wave-0 { font-weight: 700; transform: translateY(-1px); opacity: 1; }

/* neighbors */
.navbar-menu a.wave-1 { font-weight: 600; opacity: 0.95; }
.navbar-menu a.wave-2 { font-weight: 500; opacity: 0.9; }
.navbar-menu a.wave-3 { font-weight: 500; opacity: 0.85; }

/* reset when no wave */
@media (prefers-reduced-motion: reduce) {
  .navbar-menu a { transition: none; }
}


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

.navbar-search {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    opacity: 0.8;
    transition: var(--transition);
}

.navbar-search:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding-top: 48px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: white;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 80px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
  
    background: linear-gradient(120deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 4s ease;
}
.last-updated-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-right: auto; 
    align-self: center; 
    padding-left: 120px;
}

.hero-subtitle {
    font-size: 30px;
    line-height: 1.14286;
    font-weight: 400;
    letter-spacing: 0.007em;
    color: #ffffff;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    padding: 8px 16px;
}

.btn-ghost:hover {
    background: var(--bg-secondary);
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

/* Cards */
.card {
    background: var(--bg-primary);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-footer {
    padding: 20px 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 48px 24px;
    background: var(--bg-primary);
    border-radius: 18px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600; 
    letter-spacing: 0.05em; 
    color: white;
    text-transform: uppercase;
}

.feature-card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card-description {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-gray {
    background: var(--bg-secondary);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}
#mapLegend {
    position: absolute;
    top: 120px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    min-width: 180px;
    max-width: 200px;
    z-index: 500;
    color: rgb(1, 1, 1);
    cursor: grab;
    user-select: none;
    transition: transform 0.1s ease-out;
}

#mapLegend.dragging {
    cursor: grabbing;
    transition: none;
}

#mapLegend h3,
#mapLegend .legend-item,
#mapLegend .legend-sources strong,
#mapLegend .legend-drag-hint {
    cursor: grab;
}

#mapLegend.dragging h3,
#mapLegend.dragging .legend-item,
#mapLegend.dragging .legend-sources strong,
#mapLegend.dragging .legend-drag-hint {
    cursor: grabbing;
}

#mapLegend .color-box {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    margin-right: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
    pointer-events: none;
}

#mapLegend .legend-sources {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #0d00ff;
    font-size: 15px;
    line-height: 1.5;
}

#mapLegend .legend-sources strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #000000;
}

#mapLegend .legend-sources a {
    color: #000000;
    text-decoration: none;
    display: block;
    margin: 6px 0;
    padding: 4px 0;
    transition: all 0.2s ease;
    cursor: pointer;
}

#mapLegend .legend-sources a:hover {
    color: #0022ff;
    text-decoration: underline;
}

#mapLegend .legend-drag-hint {
    font-size: 12px;
    opacity: 0.6;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

#home + .section-header {
  margin-top: 120px;   
}
.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: 56px;
    line-height: 1.07143;
    font-weight: 600;
    letter-spacing: -0.005em;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Map Container */
.map-wrapper {
    background: var(--bg-primary);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    width: 100%;  
    max-width: 100%; 
}

.map-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.map-control {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.map-control:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
}

.map-container {
    width: 100% !important;
    height: 65vh !important;
    position: relative;
}

@media (min-width: 1400px) {
    #map,
    .map-container {
        height: 75vh !important;
    }
}

.map-section .container {
    max-width: 1600px;  
}

#countryModal .modal-dialog {
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: 18px;
}



/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
}

.modal.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    background: var(--bg-primary);
    border-radius: 18px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

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

.modal-title {
    font-size: 28px;
    font-weight: 600;
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--border-light);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 200px);
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
/* Update the main footer style */
.modal-footer {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
}

/* Style for the new left-side button container */
.modal-footer-left {
    display: flex;
    gap: 12px; 
}
/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--bg-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.form-control-lg {
    padding: 16px 20px;
    font-size: 17px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%2386868b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.form-text {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.form-error {
    color: var(--danger);
}

/* Tables */
.table-wrapper {
    background: var(--bg-primary);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: var(--bg-secondary);
}

/* New styles for the info icon and tooltip */
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--border);
    color: var(--text-secondary);
    font-size: 11px;
    font-style: normal;
    font-weight: bold;
    cursor: pointer;
    margin-left: 6px;
    transition: all 0.2s ease;
}

/* Make the container a reference for positioning */
.info-item {
    position: relative;
}

/* Style for the question mark icon */
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 20px;
    border-radius: 980px;     
    background-color: #d2d2d7;
    color: #86868b;
    font-size: 12px;
    font-style: normal;
    font-weight: bold;
    cursor: pointer;
    margin-left: 6px;
    transition: all 0.2s ease;
}

.info-icon:hover {
    background-color: #0071e3;
    color: white;
}

/* The tooltip box, hidden by default */
.tooltiptext {
    visibility: hidden;
    opacity: 0;
    width: 280px;
    background-color: #1d1d1f;
    color: #fff;
    text-align: left;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
    z-index: 10;
    top: 140%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    pointer-events: none;
}

/* The little arrow pointing up */
.tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%; 
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #1d1d1f transparent;
}


.info-item.active .tooltiptext {
    visibility: visible;
    opacity: 1;
    pointer-events: auto; 
}

.tooltiptext strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.tooltiptext p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* Show the tooltip on hover */
.info-icon:hover + .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.table th {
    padding: 16px 24px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
}

.table tbody tr {
    transition: var(--transition);
}

.table tbody tr:hover {
    background: var(--bg-secondary);
}

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

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-primary {
    background: var(--primary);
    color: white;
}

.badge-success {
    background: var(--success);
    color: white;
}

.badge-warning {
    background: var(--warning);
    color: white;
}

.badge-danger {
    background: var(--danger);
    color: white;
}

.badge-secondary {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.badge-muted {
    background: #f0f0f0;
    color: #999;
}

/* Loading States */
.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-sm {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--border-light) 50%, var(--bg-secondary) 100%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
    border-radius: 8px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes skeleton {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive Design */
@media (max-width: 1068px) {
    .hero-title {
        font-size: 64px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 19px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .modal-dialog {
        width: 95%;
        margin: 20px;
    }
    
    /* HIDE THE LEGEND ON MOBILE */
    #mapLegend {
        display: none !important;
    }
    
    /* HIDE SELECT DROPDOWN ON MOBILE */
    #countrySelect {
        display: none !important;
    }
    
    /* HIDE COMPARE COUNTRIES BUTTON ON MOBILE */
    .map-controls button:nth-child(2) {
        display: none !important;
    }
    
    /* HIDE FILTERS BUTTON ON MOBILE */
    .map-controls button:nth-child(3) {
        display: none !important;
    }
    
    /* MAKE MAP CONTROLS SMALLER */
    .map-controls {
        top: 10px;
        left: 10px;
        right: 10px;
        justify-content: flex-end;
    }
    
    /* FULLSCREEN BUTTON STAYS - MAKE IT BIGGER */
    .map-controls button:last-child {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* ENSURE MAP IS VISIBLE */
    .map-container {
        height: 60vh !important;
        min-height: 400px !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

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

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--text-secondary);
}

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

.text-success {
    color: var(--success);
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.p-5 { padding: 48px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* -- 1. Gradient Text Styles -- */
.gradient-text-cool {
    background-image: linear-gradient(135deg, #0071e3 0%, #86868b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-warm {
    background-image: linear-gradient(135deg, #ff9500 0%, #ff3b30 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* -- 2. Scroll Reveal Animation Styles -- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* -- 3. Step-by-Step Guide Styles -- */
.step-by-step-guide {
    list-style: none;
    counter-reset: steps-counter;
    padding: 0;
    max-width: 900px;
    margin: 40px auto 0;
}

.step-by-step-guide li {
    counter-increment: steps-counter;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.step-by-step-guide li::before {
    content: counter(steps-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: white;
    background: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: -4px;
}

.step-by-step-guide a {
    text-decoration: none;
}

.step-by-step-guide a:hover h3 {
    text-decoration: underline;
    color: var(--primary);
}

/* Light theme for the guide on white backgrounds */
.step-by-step-guide.light-theme li {
    color: var(--text-secondary);
}
.step-by-step-guide.light-theme h3 {
    color: var(--text-primary);
}

/* Dark theme for the guide on dark backgrounds */
.step-by-step-guide.dark-theme li {
    color: rgba(255, 255, 255, 0.8);
}
.step-by-step-guide.dark-theme h3 {
    color: white;
}

/* New style for a dark, gradient section background */
.section-gradient-dark {
    background-color: #1d1d1f; /* Fallback color */
    background-image: linear-gradient(145deg, #3a3a3c 0%, #1d1d1f 100%);
}

/* Ensure headlines and text within the new gradient section are white */
.section-gradient-dark .section-title,
.section-gradient-dark .section-subtitle {
    color: white;
}

/* Search Modal Results */
.search-result {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    gap: 12px;
}

.search-result:hover {
    background: var(--bg-secondary);
}

.search-result-flag {
    font-size: 24px;
}

.search-result-name {
    flex-grow: 1;
    font-weight: 500;
}

.search-result-code {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Hero Video Background */
.hero {
    position: relative;
    overflow: hidden; 
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 1;
}

.hero-content {
    position: relative; 
    z-index: 2;
}

.comparison-tray {
    position: fixed;
    bottom: -200px; /* Start hidden */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    background: rgba(29, 29, 31, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 12px 12px 0 0;
    padding: 12px 20px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-tray.visible {
    bottom: 0; 
}

.comparison-tray-items {
    display: flex;
    gap: 10px;
    align-items: center;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
}

.comparison-item .flag {
    font-size: 20px;
}

.comparison-item button {
    background: none;
    border: none;
    color: white;
    opacity: 0.6;
    cursor: pointer;
    font-size: 16px;
    margin-left: 4px;
    padding: 0;
    line-height: 1;
}
.comparison-item button:hover {
    opacity: 1;
}

.comparison-tray .btn-primary {
    padding: 8px 20px;
    font-size: 14px;
}

.comparison-tray .btn-primary[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.comparison-table th, .comparison-table td {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid var(--border);
}
.comparison-table th {
    background: var(--bg-secondary);
    font-size: 14px;
}
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}



.comparison-tray {
    position: fixed;
    bottom: -200px; /* Start hidden */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    background: rgba(29, 29, 31, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 12px 12px 0 0;
    padding: 12px 20px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-tray.visible {
    bottom: 0;
}

.comparison-tray-items {
    display: flex;
    gap: 10px;
    align-items: center;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
}

.comparison-item .flag {
    font-size: 20px;
}

.comparison-item button {
    background: none;
    border: none;
    color: white;
    opacity: 0.6;
    cursor: pointer;
    font-size: 16px;
    margin-left: 4px;
    padding: 0;
    line-height: 1;
}
.comparison-item button:hover {
    opacity: 1;
}

.comparison-tray .btn-primary {
    padding: 8px 20px;
    font-size: 14px;
}

.comparison-tray .btn-primary[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.comparison-table th, .comparison-table td {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid var(--border);
}
.comparison-table th {
    background: var(--bg-secondary);
    font-size: 14px;
}
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}


.nfz-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    max-height: 500px;
    overflow-y: auto;
    padding: 8px;
}

.nfz-country-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 70px;
}

.nfz-country-card:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
    border-color: #0071e3;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.2);
}


.nfz-country-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.nfz-country-flag {
    font-size: 36px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.nfz-country-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nfz-country-info strong {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.2;
}

.nfz-country-info small {
    font-size: 11px;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.nfz-link-icon {
    color: #c7c7cc;
    flex-shrink: 0;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.nfz-country-card:hover .nfz-link-icon {
    color: #0071e3;
    transform: translateX(2px);
}

.nfz-countries-grid::-webkit-scrollbar {
    width: 10px;
}

.nfz-countries-grid::-webkit-scrollbar-track {
    background: #f5f5f7;
    border-radius: 10px;
}

.nfz-countries-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d1d1d6 0%, #c7c7cc 100%);
    border-radius: 10px;
    border: 2px solid #f5f5f7;
}

.nfz-countries-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b4b4b8 0%, #a1a1a6 100%);
}

/* Modal sizing */
#noFlyModal .modal-dialog {
    max-width: 980px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nfz-countries-grid {
        grid-template-columns: 1fr;
        max-height: 400px;
        gap: 12px;
    }
    
    .nfz-country-card {
        padding: 14px;
        min-height: 60px;
    }
    
    .nfz-country-flag {
        font-size: 28px;
        width: 36px;
        height: 36px;
    }
    
    .nfz-country-info strong {
        font-size: 14px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .nfz-countries-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

.nfz-region-section {
    margin-bottom: 32px;
}

.nfz-region-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0071e3;
}

.nfz-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

#noFlyModal .modal-dialog {
    max-width: 1200px;
}

#noFlyModal .modal-body {
    max-height: 600px;
    overflow-y: auto;
}
/*
 New styles to correctly position the modal when inside the fullscreen map
*/
.modal-in-fullscreen {
   
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647;
}

/* Makes the entire feature card a clickable link without changing the style */
.feature-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%; 
}

/* Styles for the new list inside the feature cards */
.feature-card-list {
  text-align: left;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  list-style-position: inside; 
  padding-left: 5px; 
}

.feature-card-list li {
    margin-bottom: 8px; 
}

/* The main black footer area */
footer {
    background: #1d1d1f;
    color: white;
    padding: 40px 22px;
    text-align: center;
}

/* The container that centers all the footer content */
footer .container {
    display: flex;
    flex-direction: column; 
    align-items: center;   
}

/* The div holding the links (Privacy, Terms, etc.) */
footer .mb-3 {
    margin-bottom: 16px;
}

/* The copyright paragraph */
footer p {
    margin: 0;
    opacity: 0.6;
    font-size: 14px;
}

/* The container for the logo image */
.footer-logos {
    margin-top: 32px;   
    padding-top: 0;     
    border-top: none;   
    width: 100%;
}

/* The logo image itself */
.footer-logos img {
    max-width: 500px;
    width: 100%;
    height: auto;
    opacity: 0.8;
}
.map-control {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    font-family: sans-serif;
    font-size: 14px;
}

.map-control h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #333;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.color-box {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border: 1px solid #000;
}

.construction-notice {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(
        -90deg, 
        #0612f8, 
        #171ff0, 
        #171ef6, 
        #2f4df9
    );
    background-size: 400% 400%;
    color: white;
    padding: 12px 20px;
    z-index: 10001;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease-out 0.5s forwards, gradientShift 4s ease infinite;
    transition: transform 0.3s ease;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.construction-notice.hidden {
    animation: slideUp 0.6s ease-out forwards;
}

.construction-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.construction-icon {
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.construction-text {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.construction-close {
    position: absolute;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.construction-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Animations */
@keyframes slideDown {
    from {
        top: -100px;
    }
    to {
        top: 0;
    }
}

@keyframes slideUp {
    from {
        top: 0;
    }
    to {
        top: -100px;
    }
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    .construction-text {
        font-size: 12px;
    }
    
    .construction-icon {
        font-size: 18px;
    }
}
/* Make body copy justify nicely */
.terms-content p {
  text-align: justify;        
  text-align-last: left;      /* keep the last line ragged-left */
  text-justify: inter-word;   
  hyphens: auto;              
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  text-wrap: pretty;         
}

/* Optional: balance multi-line headings instead of justifying them */
.terms-content h1, 
.terms-content h2, 
.terms-content h3 {
  text-wrap: balance;
}

/* Prevent long URLs/emails from breaking layout */
.terms-content a {
  overflow-wrap: anywhere;   
  word-break: break-word;
}

.warning-box p,
.info-box p {
  text-align: left;
  text-align-last: auto;
  hyphens: manual;
}
.privacy-container {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 40px 20px;
}
.privacy-header {
    text-align: center;
    margin-bottom: 48px;
}
.privacy-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}
.privacy-header p {
    color: var(--text-secondary);
    font-size: 18px;
}
.privacy-content {
    background: white;
    padding: 48px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}
.privacy-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}
.privacy-content h2:first-child {
    margin-top: 0;
}
.privacy-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}
.privacy-content p {
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-primary);
}


.highlight-box {
    background: #f0f7ff;
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 24px 0;
    border-radius: 8px;
}
.last-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.privacy-content p {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    text-wrap: pretty;
}
.privacy-content h1,
.privacy-content h2,
.privacy-content h3 {
    text-wrap: balance;
}
.privacy-content a {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.highlight-box p {
    text-align: left;
    text-align-last: auto;
    hyphens: manual;
}
/* Default: navbar at the top */
.navbar {
  top: 0;
  transition: top 0.3s ease;
}

/* When the notice is visible, push navbar down by the banner height */
body.has-notice .navbar {
  top: 48px; /* same height as the banner */
}

.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 450px;
    background: rgba(131, 131, 139, 0.7); 
    backdrop-filter: saturate(200%) blur(4px); 
    -webkit-backdrop-filter: saturate(200%) blur(4px); 
    color: var(--text-light);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    z-index: 10000;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

/* This class is added by JavaScript to trigger the slide-in animation */
.cookie-consent-banner.visible {
    transform: translateY(0);
    visibility: visible;
}

.cookie-consent-banner .title {
    font-size: 19px;
    font-weight: 600;
}

.cookie-consent-banner .body {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.5;
    margin: 8px 0 0 0;
}

.cookie-consent-banner a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}
.cookie-consent-banner a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 12px;
}

/* Make buttons a bit smaller for the banner */
.cookie-actions .btn {
    padding: 10px 24px;
    font-size: 15px;
}

/* Responsive adjustments for mobile */
@media (max-width: 500px) {
    .cookie-consent-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}
/* Custom fix to reduce space between Regulations and Resources */
#regulations {
    padding-bottom: 50px;
    padding-top: 120px;
}

#resources {
    padding-top: 50px;
}
.site-footer-note {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  opacity: 1; 
}

.site-footer-note a {
  color: #0a84ff;
  text-decoration: underline; /* optional */
}
.about-credit-note {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
}

.about-credit-note a {
  color: #0a84ff;
  text-decoration: underline; /* optional */
}

#about.section {
  /* keep the default top padding from .section (100px) */
  padding-top: 70px;
  
  padding-bottom: 40px;
}

/* Match the mobile rule where .section uses 60px */
@media (max-width: 768px) {
  #about.section {
    padding-top: 60px;
    /* 60 (section) - 40 (footer top) = 20 */
    padding-bottom: 20px;
  }
}
/* Quick Start footer sentence: remove extra spacing around inline links */
footer p a {
  margin: 0 !important;             
  color: #0a84ff !important;     
  text-decoration: underline;       
}

/* Scope the spacing to the link row only (Home, Privacy, Terms...) */
footer .mb-3 a {
  margin: 0 12px;                    /* keep spacing for the top row of footer links */
}
/* --- Normalize navbar across all pages --- */
.navbar {
  height: 52px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: saturate(180%) blur(20px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  border-bottom: 1px solid var(--border) !important;
}

.navbar-container {
  max-width: 1024px !important;
  padding: 0 22px !important;
}

.navbar-brand {
  font-size: 25px !important;
  font-weight: 600 !important;
}

.navbar-brand-icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 6px !important;
  font-size: 20px !important;
}

.navbar-menu {
  gap: 34px !important;
}

.navbar-menu a {
  /* Remove any “button-like” styling on some pages */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;

  /* Main-page typography */
  color: var(--text-primary) !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  letter-spacing: -0.01em !important;
  opacity: 1 !important;
}

/* Keep underline line for the active page, like main */
.navbar-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text-primary);
}
/* Force emoji font for all flag emojis */
.nfz-country-flag,
.search-result-flag,
.country-flag,
#modalCountryFlag,
.comparison-item .flag {
    font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", sans-serif !important;
    font-style: normal !important;
}