/* TravelNet Airport – Admin + Frontend Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── ADMIN WRAP ── */
.tnap-wrap { font-family:'DM Sans',sans-serif; max-width:1400px; }

.tnap-header { display:flex; align-items:center; justify-content:space-between; padding:20px 0 16px; border-bottom:2px solid #0e2340; margin-bottom:24px; }
.tnap-header-left { display:flex; align-items:center; gap:12px; }
.tnap-icon { font-size:28px; }
.tnap-header h1 { margin:0; font-size:24px; font-weight:700; color:#0e2340; }

/* Buttons */
.tnap-btn { display:inline-flex; align-items:center; gap:6px; padding:9px 18px; border-radius:6px; font-size:13px; font-weight:600; cursor:pointer; text-decoration:none; border:2px solid transparent; transition:all .15s; }
.tnap-btn-primary   { background:#0e2340; color:#fff; border-color:#0e2340; }
.tnap-btn-primary:hover { background:#1a3a6b; border-color:#1a3a6b; color:#fff; }
.tnap-btn-secondary { background:#e8f4fe; color:#0e2340; border-color:#c5dff5; }
.tnap-btn-secondary:hover { background:#d0e8ff; }
.tnap-btn-ghost { background:transparent; color:#555; border-color:#ddd; }
.tnap-btn-ghost:hover { border-color:#999; color:#333; }
.tnap-btn-large { padding:12px 28px; font-size:15px; }
button.tnap-btn { font-family:'DM Sans',sans-serif; }

/* Notices */
.tnap-notice { padding:12px 18px; border-radius:6px; margin-bottom:16px; font-weight:500; }
.tnap-notice-success { background:#d4edda; color:#155724; border-left:4px solid #28a745; }
.tnap-notice-warning { background:#fff3cd; color:#856404; border-left:4px solid #ffc107; }
.tnap-notice-error   { background:#f8d7da; color:#721c24; border-left:4px solid #dc3545; }

/* Search bar */
.tnap-search-bar { display:flex; align-items:center; gap:10px; margin-bottom:16px; flex-wrap:wrap; }
.tnap-search-bar input[type="text"],
.tnap-search-bar select { padding:8px 12px; border:2px solid #ddd; border-radius:6px; font-size:13px; font-family:'DM Sans',sans-serif; }
.tnap-search-bar input[type="text"] { width:260px; }
.tnap-search-bar input:focus,
.tnap-search-bar select:focus { border-color:#0e2340; outline:none; }
.tnap-count { margin-left:auto; color:#888; font-size:13px; }

/* Table */
.tnap-table { width:100%; border-collapse:collapse; background:#fff; border-radius:8px; overflow:hidden; box-shadow:0 1px 4px rgba(0,0,0,.08); }
.tnap-table thead tr { background:#0e2340; color:#fff; }
.tnap-table th { padding:12px 14px; font-size:12px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; text-align:left; }
.tnap-table td { padding:11px 14px; border-bottom:1px solid #f0f0f0; vertical-align:middle; font-size:13px; }
.tnap-table tbody tr:hover td { background:#f5faff; }
.tnap-table tbody tr:last-child td { border-bottom:none; }

.tnap-logo-thumb { width:48px; height:28px; object-fit:contain; border:1px solid #eee; border-radius:4px; padding:2px; }
.tnap-no-logo { font-size:22px; color:#ccc; }

.tnap-badge { display:inline-block; padding:3px 8px; border-radius:4px; font-size:12px; font-weight:700; letter-spacing:.05em; }
.tnap-badge-iata { background:#e8f4fe; color:#1a6ddb; }

.tnap-status { display:inline-block; padding:3px 9px; border-radius:20px; font-size:11px; font-weight:600; }
.tnap-status-active   { background:#d4edda; color:#155724; }
.tnap-status-inactive { background:#e2e3e5; color:#6c757d; }

.tnap-sc-preview { font-size:11px; background:#f5f5f5; padding:3px 7px; border-radius:4px; color:#333; }
.tnap-empty { text-align:center; padding:40px; color:#888; font-size:14px; }
.tnap-actions { white-space:nowrap; }
.tnap-action-btn { display:inline-block; padding:4px 10px; border-radius:4px; font-size:12px; font-weight:600; text-decoration:none; margin-right:4px; }
.tnap-action-edit   { background:#e8f4fe; color:#1a6ddb; }
.tnap-action-edit:hover { background:#d0e8ff; }
.tnap-action-delete { background:#fde8e8; color:#c0392b; }
.tnap-action-delete:hover { background:#fcd4d4; }

/* Form */
.tnap-form-grid { display:grid; grid-template-columns:1fr 420px; gap:24px; margin-bottom:24px; }
.tnap-form-section { background:#fff; border-radius:8px; padding:24px; box-shadow:0 1px 4px rgba(0,0,0,.08); }
.tnap-form-section h2 { font-size:16px; font-weight:700; color:#0e2340; margin:0 0 20px; padding-bottom:12px; border-bottom:2px solid #f0f0f0; }
.tnap-field { margin-bottom:16px; }
.tnap-field label { display:block; font-size:13px; font-weight:600; color:#333; margin-bottom:6px; }
.tnap-field input[type="text"],
.tnap-field input[type="url"],
.tnap-field input[type="number"],
.tnap-field select { width:100%; padding:9px 12px; border:2px solid #ddd; border-radius:6px; font-size:13px; font-family:'DM Sans',sans-serif; color:#333; box-sizing:border-box; transition:border-color .15s; }
.tnap-field input:focus,
.tnap-field select:focus { border-color:#0e2340; outline:none; box-shadow:0 0 0 3px rgba(14,35,64,.07); }
.tnap-field .required { color:#c0392b; }
.tnap-hint { font-size:11px; color:#888; margin:4px 0 0; }
.tnap-field-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.tnap-logo-upload { display:flex; gap:10px; align-items:flex-start; flex-wrap:wrap; }
.tnap-logo-upload input { flex:1; min-width:0; }
.tnap-logo-preview { max-width:200px; max-height:80px; object-fit:contain; border:2px dashed #ddd; border-radius:6px; padding:8px; background:#f9f9f9; display:block; }

.tnap-shortcode-box { background:#f5faff; border:2px solid #d0e8ff; border-radius:8px; padding:16px; margin-top:20px; }
.tnap-shortcode-box h3 { font-size:14px; font-weight:700; color:#0e2340; margin:0 0 10px; }
.tnap-sc-item { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:6px; }
.tnap-sc-item code { font-size:11px; background:#fff; padding:4px 8px; border-radius:4px; border:1px solid #dde; flex:1; }
.tnap-copy-btn { padding:4px 10px; font-size:11px; font-weight:600; background:#0e2340; color:#fff; border:none; border-radius:4px; cursor:pointer; white-space:nowrap; font-family:'DM Sans',sans-serif; }
.tnap-copy-btn:hover { background:#1a3a6b; }
.tnap-copy-btn.copied { background:#28a745; }

.tnap-form-footer { display:flex; align-items:center; gap:12px; padding:20px 0; border-top:2px solid #f0f0f0; }

/* Guide */
.tnap-guide { max-width:900px; }
.tnap-guide-section { background:#fff; border-radius:8px; padding:24px; box-shadow:0 1px 4px rgba(0,0,0,.08); margin-bottom:20px; }
.tnap-guide-section h2 { font-size:17px; font-weight:700; color:#0e2340; margin:0 0 14px; }
.tnap-code-block { background:#0e2340; color:#7dd3fc; padding:14px 18px; border-radius:6px; margin-bottom:10px; overflow-x:auto; }
.tnap-code-block code, .tnap-code-block pre { font-family:'Courier New',monospace; font-size:13px; color:#7dd3fc; margin:0; background:none; }

/* ── FRONTEND CARD ── */
.tnap-airport-card { display:inline-flex; flex-direction:column; background:#fff; border:2px solid #e0edf8; border-radius:12px; overflow:hidden; box-shadow:0 2px 12px rgba(14,35,64,.08); transition:box-shadow .2s,transform .2s; max-width:380px; font-family:'DM Sans',sans-serif; }
.tnap-airport-card:hover { box-shadow:0 6px 24px rgba(14,35,64,.14); transform:translateY(-2px); }
.tnap-airport-card .tnap-card-header { display:flex; align-items:center; gap:16px; padding:20px; background:linear-gradient(135deg,#0e2340 0%,#1a4a7a 100%); color:#fff; }
.tnap-airport-card .tnap-card-header img { object-fit:contain; background:#fff; border-radius:6px; padding:6px; max-height:54px; }
.tnap-no-logo-box { width:54px; height:54px; background:rgba(255,255,255,.15); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:28px; flex-shrink:0; }
.tnap-airport-card .tnap-card-title h3 { margin:0 0 6px; font-size:16px; font-weight:700; color:#fff; }
.tnap-codes { display:flex; gap:6px; flex-wrap:wrap; }
.tnap-iata-badge { display:inline-block; padding:2px 8px; background:rgba(255,255,255,.2); color:#fff; border-radius:4px; font-size:12px; font-weight:700; letter-spacing:.06em; }
.tnap-icao-badge { display:inline-block; padding:2px 8px; background:rgba(255,255,255,.1); color:rgba(255,255,255,.8); border-radius:4px; font-size:12px; font-weight:600; }
.tnap-airport-card .tnap-card-body { padding:16px 20px 20px; display:flex; flex-direction:column; gap:8px; }
.tnap-airport-card .tnap-card-row { display:flex; align-items:center; gap:10px; font-size:13px; color:#444; }
.tnap-airport-card .tnap-card-row a { color:#1a6ddb; text-decoration:none; word-break:break-all; }
.tnap-airport-card .tnap-card-row a:hover { text-decoration:underline; }

/* Inline */
.tnap-airport-inline { display:inline-flex; align-items:center; gap:10px; padding:6px 12px 6px 6px; border:1px solid #e0edf8; border-radius:8px; background:#f5faff; vertical-align:middle; font-family:'DM Sans',sans-serif; }
.tnap-airport-inline img { object-fit:contain; max-height:32px; border-radius:4px; background:#fff; border:1px solid #eee; padding:2px; }
.tnap-airport-name-text { font-weight:600; font-size:14px; color:#0e2340; }
.tnap-airport-inline .tnap-iata-badge { background:#e8f4fe; color:#1a6ddb; }

/* Logo only */
.tnap-airport-logo-only img { display:block; object-fit:contain; }

/* ── GROUP SHORTCODES ── */
.tnap-group-wrap { margin:1.5em 0; font-family:'DM Sans',sans-serif; }
.tnap-group-heading { font-size:18px; font-weight:700; color:#0e2340; margin:0 0 16px; padding-bottom:10px; border-bottom:2px solid #e0edf8; }

.tnap-layout-grid .tnap-group-items { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:12px; }
.tnap-layout-grid .tnap-group-item { display:flex; align-items:center; gap:10px; padding:12px; background:#fff; border:2px solid #e0edf8; border-radius:10px; text-decoration:none; transition:border-color .15s,box-shadow .15s; }
.tnap-layout-grid .tnap-group-item:hover { border-color:#0e2340; box-shadow:0 3px 12px rgba(14,35,64,.1); }

.tnap-layout-list .tnap-group-items { display:flex; flex-direction:column; gap:8px; }
.tnap-layout-list .tnap-group-item { display:flex; align-items:center; gap:14px; padding:10px 14px; background:#f5faff; border-left:4px solid #0e2340; border-radius:0 8px 8px 0; text-decoration:none; transition:background .15s; }
.tnap-layout-list .tnap-group-item:hover { background:#e0edf8; }

.tnap-layout-logos .tnap-group-items { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.tnap-layout-logos .tnap-group-item { display:flex; flex-direction:column; align-items:center; gap:5px; padding:10px 12px; background:#fff; border:1px solid #e0edf8; border-radius:8px; text-decoration:none; transition:box-shadow .15s; }
.tnap-layout-logos .tnap-group-item:hover { box-shadow:0 2px 10px rgba(14,35,64,.12); }
.tnap-layout-logos .tnap-group-info { text-align:center; }

.tnap-group-logo { flex-shrink:0; }
.tnap-group-logo img { display:block; object-fit:contain; max-height:36px; }
.tnap-group-no-logo { display:flex; align-items:center; justify-content:center; width:48px; height:32px; background:#f0f0f0; border-radius:4px; font-size:18px; color:#bbb; }
.tnap-group-name    { display:block; font-size:13px; font-weight:600; color:#0e2340; line-height:1.3; }
.tnap-group-iata    { display:inline-block; margin-top:3px; padding:1px 6px; background:#e8f4fe; color:#1a6ddb; border-radius:4px; font-size:11px; font-weight:700; }
.tnap-group-city    { display:block; font-size:11px; color:#666; margin-top:2px; }
.tnap-group-country { display:block; font-size:11px; color:#888; }
a.tnap-group-item .tnap-group-name { color:#0e2340; }


/* ─── ALPHABETICAL AZ SHORTCODE ─── */

/* Fælles wrapper */
.tna-az-wrap, .tnap-az-wrap {
    font-family: "DM Sans", sans-serif;
    margin: 1.5em 0;
}
.tna-az-main-heading, .tnap-az-main-heading {
    font-size: 22px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 18px;
}

/* Letter nav */
.tna-az-nav, .tnap-az-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
    padding: 12px 14px;
    background: #f8f9ff;
    border: 2px solid #e8eef8;
    border-radius: 10px;
}
.tna-az-letter, .tnap-az-letter {
    min-width: 34px;
    height: 34px;
    padding: 0 6px;
    border: 2px solid #dde5f5;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.tna-az-letter:hover, .tnap-az-letter:hover {
    border-color: #0a1628;
    background: #e8f0fe;
    color: #0a1628;
}
.tna-az-letter.active, .tnap-az-letter.active {
    background: #0a1628;
    border-color: #0a1628;
    color: #fff;
}

/* Controls bar */
.tna-az-controls, .tnap-az-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 0 2px;
}
.tna-az-count, .tnap-az-count {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}
.tna-az-toggle, .tnap-az-toggle {
    display: flex;
    gap: 4px;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 3px;
}
.tna-az-view-btn, .tnap-az-view-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #888;
    cursor: pointer;
    transition: all .15s;
}
.tna-az-view-btn.active, .tnap-az-view-btn.active {
    background: #fff;
    color: #0a1628;
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.tna-az-view-btn:hover, .tnap-az-view-btn:hover { color: #0a1628; }

/* Letter heading */
.tna-az-section, .tnap-az-section { display: none; }
.tna-az-section.active, .tnap-az-section.active { display: block; }

.tna-az-letter-heading, .tnap-az-letter-heading {
    font-size: 28px;
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 3px solid #0a1628;
    display: inline-block;
    min-width: 44px;
    text-align: center;
    line-height: 1;
}

/* LIST view */
.tna-az-list, .tnap-az-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tna-az-list .tna-az-item,
.tnap-az-list .tnap-az-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e8eef8;
    border-left: 4px solid #0a1628;
    border-radius: 0 8px 8px 0;
    text-decoration: none;
    color: inherit;
    transition: background .15s, border-color .15s;
}
.tna-az-list a.tna-az-item:hover,
.tnap-az-list a.tnap-az-item:hover {
    background: #f0f5ff;
    border-left-color: #1a5dbf;
}

/* GRID view */
.tna-az-grid, .tnap-az-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.tna-az-grid .tna-az-item,
.tnap-az-grid .tnap-az-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border: 2px solid #e8eef8;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
.tna-az-grid a.tna-az-item:hover,
.tnap-az-grid a.tnap-az-item:hover {
    border-color: #0a1628;
    box-shadow: 0 4px 14px rgba(10,22,40,.1);
    transform: translateY(-2px);
}

/* Item internals */
.tna-az-item-logo, .tnap-az-item-logo {
    flex-shrink: 0;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tna-az-item-logo img, .tnap-az-item-logo img {
    display: block;
    object-fit: contain;
    max-height: 38px;
}
.tna-az-no-logo, .tnap-az-no-logo {
    font-size: 22px;
    color: #ccc;
}
.tna-az-item-info, .tnap-az-item-info {
    flex: 1;
    min-width: 0;
}
.tna-az-item-name, .tnap-az-item-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0a1628;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tna-az-item-iata, .tnap-az-item-iata {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 7px;
    background: #e8f0fe;
    color: #1a5dbf;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
}
.tna-az-item-meta, .tnap-az-item-meta {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Airport-specific accent colour override */
.tnap-az-wrap .tnap-az-letter.active { background: #0e2340; border-color: #0e2340; }
.tnap-az-wrap .tnap-az-letter-heading { color: #0e2340; border-bottom-color: #0e2340; }
.tnap-az-list .tnap-az-item { border-left-color: #0e2340; }
.tnap-az-list a.tnap-az-item:hover { border-left-color: #1a6ddb; background: #f0f7ff; }
.tnap-az-grid a.tnap-az-item:hover { border-color: #0e2340; }

@media (max-width: 600px) {
    .tna-az-grid, .tnap-az-grid { grid-template-columns: 1fr 1fr; }
    .tna-az-nav, .tnap-az-nav { gap: 3px; padding: 8px 10px; }
    .tna-az-letter, .tnap-az-letter { min-width: 28px; height: 28px; font-size: 12px; }
}


/* ═══════════════════════════════════════════════
   AIRPORT INFO CARD  – TravelNet brand colours
   #51B1CB  #A0CF58  #255A6D  #6CAE5A
═══════════════════════════════════════════════ */

/* CSS custom properties for the palette */
.tnap-info-card {
    --tn-blue:       #51B1CB;
    --tn-green:      #A0CF58;
    --tn-dark:       #255A6D;
    --tn-mid-green:  #6CAE5A;
    --tn-light-blue: #e8f6fb;
    --tn-light-green:#f0f8e8;
    --tn-border:     #d0eaf2;

    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(37,90,109,.13);
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .25s, transform .25s;
    max-width: 760px;
    border: 1.5px solid var(--tn-border);
}
a.tnap-info-card:hover {
    box-shadow: 0 10px 36px rgba(37,90,109,.2);
    transform: translateY(-3px);
    border-color: var(--tn-blue);
}

/* ── HEADER ── */
.tnap-ic-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 28px 22px;
    background: linear-gradient(135deg, #255A6D 0%, #51B1CB 100%);
    color: #fff;
    position: relative;
}
/* Subtle decorative arc */
.tnap-ic-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 18px;
    background: #fff;
    border-radius: 18px 18px 0 0;
}

.tnap-ic-logo {
    flex-shrink: 0;
    background: rgba(255,255,255,.18);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.tnap-ic-logo img { display: block; object-fit: contain; max-height: 64px; }
.tnap-ic-logo-placeholder { font-size: 48px; flex-shrink: 0; }

.tnap-ic-title { flex: 1; min-width: 0; }
.tnap-ic-name {
    font-size: 23px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.tnap-ic-location {
    font-size: 14px;
    color: rgba(255,255,255,.88);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tnap-ic-codes { display: flex; gap: 6px; flex-wrap: wrap; }
.tnap-ic-badge {
    display: inline-block;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}
.tnap-ic-badge-iata { background: #A0CF58; color: #1a3a20; }
.tnap-ic-badge-icao { background: rgba(255,255,255,.2); color: #fff; }
.tnap-ic-badge-flag { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }

/* ── STATS BAR ── */
.tnap-ic-stats {
    display: flex;
    gap: 0;
    border-bottom: 1.5px solid var(--tn-border);
    background: var(--tn-light-blue);
    margin-top: 4px;
}
.tnap-ic-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px;
    border-right: 1.5px solid var(--tn-border);
    text-align: center;
    transition: background .15s;
}
.tnap-ic-stat:last-child { border-right: none; }
.tnap-ic-stat:hover { background: #d8eef7; }
.tnap-ic-stat-icon { font-size: 20px; margin-bottom: 4px; }
.tnap-ic-stat strong { font-size: 26px; font-weight: 800; color: #255A6D; line-height: 1; }
.tnap-ic-stat span { font-size: 11px; color: #5a8a9a; margin-top: 3px; font-weight: 500; }

/* ── BODY ── */
.tnap-ic-body { padding: 0 28px 26px; }

/* ── DL info list ── */
.tnap-ic-dl {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0;
    border: 1.5px solid var(--tn-border);
    border-radius: 10px;
    overflow: hidden;
}
.tnap-ic-dl-row {
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid #e8f4f8;
}
.tnap-ic-dl-row:last-child { border-bottom: none; }
.tnap-ic-dl-row dt {
    width: 160px;
    flex-shrink: 0;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #255A6D;
    background: var(--tn-light-blue);
    border-right: 1.5px solid var(--tn-border);
}
.tnap-ic-dl-row dd {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
    color: #1a2e35;
    margin: 0;
}
.tnap-ic-dl-row dd a { color: #51B1CB; text-decoration: none; font-weight: 600; }
.tnap-ic-dl-row dd a:hover { color: #255A6D; text-decoration: underline; }
.tnap-ic-tz {
    font-size: 12px;
    background: var(--tn-light-blue);
    color: #255A6D;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* ── ROUTES ── */
.tnap-ic-routes { margin-top: 24px; }
.tnap-ic-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #255A6D;
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #A0CF58;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tnap-ic-routes-dir {
    font-size: 11px;
    font-weight: 700;
    color: #6CAE5A;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 14px 0 6px;
}
.tnap-ic-route-list { display: flex; flex-direction: column; gap: 5px; }
.tnap-ic-route-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    background: var(--tn-light-blue);
    border: 1.5px solid var(--tn-border);
    border-left: 3px solid var(--tn-blue);
    border-radius: 0 8px 8px 0;
    text-decoration: none;
    color: inherit;
    font-size: 13px;
    transition: background .12s, border-color .12s;
}
a.tnap-ic-route-item:hover {
    background: #d8eef7;
    border-color: var(--tn-blue);
    border-left-color: var(--tn-mid-green);
}
.tnap-ic-route-logo { height: 20px; max-width: 36px; object-fit: contain; border-radius: 3px; flex-shrink: 0; }
.tnap-ic-route-codes { display: flex; align-items: center; gap: 4px; }
.tnap-ic-ap { font-size: 14px; font-weight: 800; color: #255A6D; }
.tnap-ic-time {
    font-size: 11px;
    font-weight: 700;
    color: #255A6D;
    background: #A0CF58;
    padding: 1px 6px;
    border-radius: 3px;
    font-variant-numeric: tabular-nums;
}
.tnap-ic-arrow { color: #51B1CB; font-size: 15px; }
.tnap-ic-route-cities { font-size: 12px; color: #5a8a9a; margin-left: auto; }

@media (max-width: 600px) {
    .tnap-ic-header { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 20px 24px; }
    .tnap-ic-body { padding: 0 16px 20px; }
    .tnap-ic-dl-row dt { width: 110px; font-size: 12px; }
    .tnap-ic-name { font-size: 18px; }
    .tnap-ic-stats { flex-wrap: wrap; }
    .tnap-ic-stat { min-width: 50%; border-bottom: 1px solid var(--tn-border); }
}

/* ─── EMBEDDED LEAFLET MAP – Airport ─── */
.tnap-ic-map-wrap { margin-top: 22px; }
.tnap-ic-map {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #d0eaf2;
}
.tnap-ic-map-credit {
    font-size: 11px;
    color: #888;
    margin: 4px 0 0;
    text-align: right;
}
.tnap-ic-map-credit a { color: #51B1CB; }

/* Airport map pin */
.tnap-map-pin { background: transparent !important; border: none !important; }
.tnap-pin-inner {
    width: 40px; height: 40px;
    background: #255A6D;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 10px rgba(37,90,109,.4);
    border: 2px solid #fff;
}
.tnap-pin-inner span {
    transform: rotate(45deg);
    font-size: 18px;
    line-height: 1;
}

