@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap');

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: #000000;
  /* Prevent browser-level drag and selection */
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

/* Prevent drag on Cesium canvas specifically */
#cesiumContainer {
  user-drag: none !important;
  -webkit-user-drag: none !important;
  -moz-user-drag: none !important;
  -ms-user-drag: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    background: #000000;
}

/* CSS Spinning Globe Loader - shows while Cesium loads */
.css-globe-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 1;
    pointer-events: none;
    display: block;
}

/* minimalist loader ring (flush outside globe) */
.loader-ring {
    position: absolute;
    width: 216px;
    height: 216px;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.6);
    animation: spin 1.5s linear infinite;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* spinning animation */
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* globe */
.earth {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-image: url('../models/earth.png');
    background-repeat: repeat-x;
    background-size: cover;
    animation: earth 12s linear infinite;
    z-index: 2;
    
    /* depth shadows */
    box-shadow:
        inset -40px -40px 80px rgba(0,0,0,0.6),
        inset 30px 30px 60px rgba(255,255,255,0.2),
        0 30px 80px rgba(0,0,0,0.5);
}

/* atmospheric rim */
.earth::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255,255,255,0.4),
        rgba(255,255,255,0.05) 40%,
        transparent 60%
    );
    pointer-events: none;
}

/* outer glow aura */
.earth::after {
    content: "";
    position: absolute;
    inset: -60px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(108, 124, 89, 0.4),
        rgba(89, 163, 221, 0.3) 40%,
        transparent 70%
    );
    filter: blur(30px);
    z-index: -1;
}

/* earth rotation */
@keyframes earth {
    0% { background-position: 0 0; }
    100% { background-position: 200% 0; }
}

.loader {
    display: table;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-bg {
    background: #000000;
}

.loader-inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.top-bar {
    background-color: transparent;
    border: medium none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 15px 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 200;
    left: 0;
    right: 0;
}

.top-bar .navbar {
    background: transparent;
    border: none;
    min-height: auto;
}

.top-bar .navbar-header {
    float: left;
}

.top-bar .navbar-collapse {
    float: right;
    border: none;
    box-shadow: none;
    display: block !important;
}

.top-bar .navbar-collapse.in {
    display: block !important;
}

/* Force navbar right on mobile */
@media (max-width: 768px) {
    .top-bar .navbar-header {
        float: left !important;
    }
    .top-bar .navbar-collapse {
        float: right !important;
        clear: none;
    }
    .top-bar .nav {
        display: inline-block;
        float: right;
    }
    .top-bar .navbar-nav {
        margin: 0;
        display: inline-block;
    }
    .top-bar .navbar-nav li {
        display: inline-block;
        float: none;
    }
}

.top-bar .nav {
    margin: 0;
    padding: 0;
}

.top-bar .navbar-nav li {
    margin-left: 10px;
    display: inline-block;
    float: none;
}

.top-bar .navbar-nav li a {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 15px;
    background: transparent !important;
}

.top-bar .navbar-nav > .active > a, 
.top-bar .navbar-nav > .active > a:focus, 
.top-bar .navbar-nav > .active > a:hover, 
.top-bar .navbar-nav li a:hover, 
.top-bar .navbar-nav li a:focus {
    color: #fff;
    background: transparent !important;
    border-bottom: 1px solid #fff;
}

.top-bar a.navbar-brand {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    padding: 10px 15px;
    font-family: 'Alegreya', serif;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5), 0 0 20px rgba(123, 67, 151, 0.5);
    float: left;
}

.top-bar a.navbar-brand:hover, 
.top-bar a.navbar-brand:focus {
    color: #fff;
}

.navbar-toggle {
    background: transparent;
    border: none;
}

.navbar-toggle .icon-bar {
    background: #fff;
}

#globe-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000000;
}

#cesiumContainer {
    display: none;
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh;
    background: #000000 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 100 !important;
}

#cesiumContainer.cesium-viewer {
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
}

#cesiumContainer .cesium-viewer-bottom {
    display: none !important;
}

#cesiumContainer canvas {
    width: 100% !important;
    height: 100% !important;
    background: #000000 !important;
}

/* =====================================================
   THREE.JS CONTAINER
   ===================================================== */
#threejs-container {
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 10;
}

#threejs-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* =====================================================
   TOGGLE SWITCH - Bottom Center
   ===================================================== */
.globe-toggle {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
}

.toggle-label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.toggle-label.active {
    opacity: 1;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6C7C59 0%, #4a5a3f 100%);
    transition: 0.4s;
    border-radius: 28px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.3);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #59a3dd 0%, #3d8bca 100%);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

/* =====================================================
   AUTO SPIN TOGGLE
   ===================================================== */
.auto-spin-toggle {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9997;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    background: rgba(10, 15, 25, 0.9);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 209, 102, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auto-spin-toggle.hidden {
    opacity: 0;
    visibility: hidden;
}

.auto-spin-label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auto-spin-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.auto-spin-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.auto-spin-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6C7C59 0%, #4a5a3f 100%);
    transition: 0.4s;
    border-radius: 26px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.auto-spin-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.auto-spin-switch input:checked + .auto-spin-slider {
    background: linear-gradient(135deg, #FFD166 0%, #F0C14B 100%);
}

.auto-spin-switch input:checked + .auto-spin-slider:before {
    transform: translateX(24px);
}

/* Mobile adjustments for auto-spin toggle */
@media (max-width: 768px) {
    .auto-spin-toggle {
        bottom: 20px;
        padding: 10px 16px;
        gap: 10px;
    }
    
    .auto-spin-label {
        font-size: 12px;
    }
    
    .auto-spin-switch {
        width: 44px;
        height: 22px;
    }
    
    .auto-spin-slider:before {
        height: 16px;
        width: 16px;
    }
    
    .auto-spin-switch input:checked + .auto-spin-slider:before {
        transform: translateX(22px);
    }
}

/* =====================================================
   PRIMARY INTERACTIVE CSS GLOBE
   ===================================================== */
.css-globe-primary {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vh;
    height: 70vh;
    min-width: 300px;
    min-height: 300px;
    max-width: 90vw;
    max-height: 90vw;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1200px;
    transform-style: preserve-3d;

    z-index: 10;
    cursor: grab;
}

.css-globe-primary:active {
    cursor: grabbing;
}

.css-globe-primary.hidden {
    display: none;
}

/* Starfield Background - covers full viewport */
.starfield-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Globe container enables depth */
.globe-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* =====================================================
   PIN MARKERS ON CSS GLOBE
   ===================================================== */
.pins-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
    border-radius: 50%;
    overflow: hidden;
}

/* Earth sphere */
.globe-earth {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;

    background-image: url("../models/earth.png");
    background-repeat: repeat-x;
    background-size: 200% 100%;

    transform-style: preserve-3d;

    box-shadow:
        inset -40px -60px 120px rgba(0,0,0,0.75),
        inset 20px 20px 50px rgba(255,255,255,0.15),
        0 30px 80px rgba(0,0,0,0.6);
}

/* Atmosphere glow */
.globe-earth::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;

    background: radial-gradient(
        circle at 35% 35%,
        rgba(255,255,255,0.5) 0%,
        rgba(255,255,255,0.2) 25%,
        transparent 55%
    );

    pointer-events: none;
}

/* Outer atmospheric glow */
.globe-earth::after {
    content: "";
    position: absolute;
    inset: -40px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(80,150,255,0.25) 0%,
        rgba(80,150,255,0.12) 40%,
        transparent 70%
    );

    filter: blur(30px);
    pointer-events: none;
}

/* =====================================================
   PIN MARKERS ON CSS GLOBE - additional styles
   ===================================================== */

.css-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
}

.css-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #FFD166;
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(255, 209, 102, 0.8),
        0 2px 4px rgba(0,0,0,0.3);
    animation: pinPulse 2s ease-in-out infinite;
}

.css-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 209, 102, 0.5);
    border-radius: 50%;
    animation: pinRing 2s ease-in-out infinite;
}

.css-pin-label {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.css-pin:hover .css-pin-label {
    opacity: 1;
}

@keyframes pinPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes pinRing {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* =====================================================
   SIDE PANEL - Location Info Popup
   ===================================================== */
.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, rgba(15, 20, 30, 0.98) 0%, rgba(10, 15, 25, 0.99) 100%);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 209, 102, 0.15);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.side-panel.active {
    transform: translateX(0);
}

/* Outgoing panel (slides behind) */
.side-panel-outgoing {
    z-index: 9999;
}

.side-panel-outgoing.active {
    transform: translateX(-30%);
    transition: transform 0.35s ease-out;
}

.side-panel-outgoing.sliding-out {
    transform: translateX(100%);
    transition: transform 0.35s ease-out;
}

/* Incoming panel slides in front */
.side-panel.sliding-in {
    transform: translateX(0);
    transition: transform 0.35s ease-out;
}



.side-panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(15, 20, 35, 0.85);
    border: 1px solid rgba(255, 209, 102, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.side-panel-close:hover {
    background: rgba(255, 209, 102, 0.2);
    border-color: #FFD166;
    color: #FFD166;
    transform: rotate(90deg);
}

.side-panel-content {
    position: absolute;
    top: 25vh;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px 35px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-sizing: border-box;
}

.side-panel-content > *:not(.side-panel-action) {
    flex-shrink: 0;
}

.side-panel-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.side-panel-country {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 209, 102, 0.85);
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.side-panel-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD166 0%, #59a3dd 100%);
    border-radius: 2px;
    margin-bottom: 25px;
}

.side-panel-content .side-panel-divider {
    display: none;
}

.side-panel-about {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.side-panel-action {
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-shrink: 0;
}

.btn-book-travel {
    display: inline-block;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #FFD166 0%, #F0C14B 100%);
    color: #0a0f19;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
}

.btn-book-travel:hover {
    background: linear-gradient(135deg, #FFE082 0%, #FFD166 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 209, 102, 0.4);
}

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

.btn-book-travel i {
    margin-right: 8px;
}

/* City Image */
.side-panel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.side-panel-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(10, 15, 25, 1) 0%, rgba(10, 15, 25, 0.7) 30%, rgba(10, 15, 25, 0.3) 60%, transparent 100%);
}

.side-panel-image-overlay {
    position: absolute;
    bottom: 0 !important;
    left: 25px;
    right: 25px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.side-panel-image-overlay .side-panel-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 2px 0 0 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.side-panel-image-overlay .side-panel-title .country-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #FFD166;
    margin-left: 2px;
}

.side-panel-image-overlay .side-panel-country {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 209, 102, 0.9);
    margin: 2px 0 10px 0;
    letter-spacing: 1px;
}

.side-panel-image-overlay .side-panel-divider {
    margin: 0;
}

/* Widget (Region/Weather/Time) */
.side-panel-widget {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 209, 102, 0.15);
    border-bottom: 1px solid rgba(255, 209, 102, 0.15);
    margin: 20px 0;
}

.widget-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 5px;
}

.widget-item i {
    font-size: 18px;
    color: #FFD166;
    margin-bottom: 5px;
}

.widget-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.widget-value {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

/* Top Places */
.side-panel-places {
    margin: 20px 0;
}

.places-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #FFD166;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 12px 0;
}

.places-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.places-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.places-list li::before {
    content: '•';
    color: #FFD166;
    position: absolute;
    left: 0;
    font-size: 16px;
    line-height: 1;
}

/* Panel backdrop overlay */
.side-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .side-panel {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
    }
    
    .side-panel-content {
        padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 26vh;
        left: 0;
        right: 0;
        bottom: 0;
        box-sizing: border-box;
        overflow-y: auto;
    }
    
    .side-panel-image {
        height: 25vh;
    }
    
    .side-panel-content {
        top: 25vh;
    }
    
    .side-panel-title {
        display: none;
    }
    
    .side-panel-country {
        display: none;
    }
    
    .side-panel-image-overlay .side-panel-title {
        display: block;
    }
    
    .side-panel-image-overlay .side-panel-country {
        display: block;
    }
    
    .side-panel-image-overlay {
        bottom: 0 !important;
        left: 20px;
        top: auto !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .side-panel-image-overlay .side-panel-title {
        font-size: 26px;
    }
    
    .side-panel-image-overlay .side-panel-title .country-name {
        font-size: 14px;
    }
    
    .side-panel-image-overlay .side-panel-country {
        display: none;
    }
    
    .side-panel-divider {
        margin-bottom: 15px;
    }
    
    .side-panel-about {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .side-panel-action {
        margin-top: auto;
        padding-top: 20px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
        flex-shrink: 0;
    }
    
    .btn-book-travel {
        padding: 16px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    .btn-book-travel i {
        margin-right: 6px;
    }
    
    .side-panel-widget {
        padding: 12px 0;
        margin: 15px 0;
    }
    
    .widget-item i {
        font-size: 16px;
    }
    
    .widget-label {
        font-size: 9px;
    }
    
    .widget-value {
        font-size: 11px;
    }
    
    .side-panel-places {
        margin: 15px 0;
    }
    
    .places-title {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .places-list li {
        font-size: 13px;
        padding: 6px 0;
        padding-left: 16px;
    }
    
    .toggle-label {
        font-size: 11px;
    }
}
