﻿
/*@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');*/


/*@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
*/

/** {
    font-family: "Roboto";
    padding: 0px;
    color: #ffffff;*/
/* background-color: black;*/
/*}*/

body, button, input, select, textarea {
    font-family: "Roboto";
    color: white;
    font-size: 1rem;
}


h1, h2, h3, h4, h5, h6 {
    text-shadow: none;
}

a {
    color: white;
    text-decoration: underline;
    background-color: transparent;
}

nav.navbar {
    position: sticky;
    top: 5vw; /* height of #containerboard */
    z-index: 1030; /* above content but below modals */
}


label {
    display: inline-block;
    margin: 0px;
}

.watermarked {
    /*            height: 18px;
            width: 150px;
            padding: 2px 0 0 2px;
            border: 1px solid #BEBEBE;*/
    padding: 0;
    border: 0px solid;
    /*    background-color: #F0F8FF;*/
    color: #4f4a22;
}



/* Header/logo Title */
/*.header {
    height: 5vw;
    padding: 0px;
    text-align: center;
    background-color: #4f4f4f;
    color: lightgoldenrodyellow;
}*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5vw;
    padding: 0;
    background-color: #4f4f4f;
    color: lightgoldenrodyellow;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    /*   perspective: 1500px;*/
}

.article-content {
    color: var(--bs-dark);
    background-color: var(--bs-light);
}
/* Column container */
.row {
    display: flex;
    /* flex-shrink: 3;
            height: 100%; */
    flex-wrap: nowrap;
    margin: 0;
}

.media-grid {
    flex-wrap: wrap !important;
}

.rowacr {
    display: flex;
    /* flex-shrink: 3;
            height: 100%; */
    flex-wrap: nowrap;
    margin: 0;
    text-align: center;
}




/* Footer */
.footer {
    padding: 0px;
    text-align: center;
    /*            background-color: rgb(0, 0, 0);*/
    /* background: rgb(49, 49, 49); */
    /* background-color: rgb(129, 129, 129); */
}




.center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    border: 3px;
    /*            border-color: rgb(201, 76, 76)*/
}




/*#containerboard {
    position: absolute;
    top: 0;
    font: 116px "Roboto Condensed";*/
/*           color: #ecdb41;*/
/*color: #fff;
    align-items: center;
    font-size: 4.4vw;*/
/* text-align: center;
            top: 0;
            left: 0;
     
            left: 0;
            right: 0; */
/* padding: 5px; */
/*}*/

#containerboard,
#staticBoardText {
    font: 116px "Roboto Condensed";
    color: #fff;
    font-size: 4.4vw;
}

#belowcontainerboard {
    margin-top: 5vw; /* Match the height of the fixed header */
}

#mainrow {
    /*  margin-top: calc(5vw + 56px);*/ /* Adjust for header + navbar height */
}

#mainrow {
    display: flex;
    flex-wrap: nowrap;
    /*padding-top: calc(5vw + 56px);*/ /* match header + navbar */
    min-height: 100vh;
    margin: 0;
}

#myMain {
    flex-grow: 1;
    padding: 2rem;
    /*  background-color: #111;*/
    /*  color: #fff;*/
    overflow-x: auto;
}



.sticky-navbar-below-header {
    position: fixed;
    top: 5vw; /* Match the header height */
    left: 0;
    right: 0;
    z-index: 1030; /* Ensure it's above other content but below modals */
}



/*=====================Departure Board ================================*/
/* Base styling */
.letter {
    position: relative;
    background-color: #444;
    display: inline-block;
}
/* Each flap (character cell) */
.flap {
    width: 4vw;
    height: 4vw; /* ✅ define total height */
    position: absolute;
    top: 0;
    right: auto;
}

/* Half panels (top & bottom parts) */
.half {
    height: 2vw; /* ✅ exactly half of flap */
    width: 100%;
    position: absolute;
    overflow: hidden;
    background: #444;
    transform-style: preserve-3d;
    animation-timing-function: ease-in;
    animation-duration: 0.28s;
    animation-iteration-count: infinite;
}

.fast .half {
    animation-duration: 0.14s;
}

/* Divider line across the flap */
.divider {
    position: absolute;
    top: 2vw;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #111;
    box-shadow: 0 1px 2px rgba(0,0,0,0.6);
    z-index: 2;
    opacity: 1; /* visible initially */
    transition: opacity 0.1s ease; /* smooth fade */
}

/* Offsets for halves */
.prev {
    top: 2vw; /* bottom half starts here */
}

.back,
.front {
    backface-visibility: hidden;
}

.front {
    transform-origin: center bottom;
}

.back {
    top: 2vw;
    transform-origin: center top;
}

/* Letter positioning inside halves */
.front .letter,
.next .letter {
    top: -0.5vw;
}

.back .letter,
.prev .letter {
    top: -2.5vw;
}

/* Animations */
.animated .front {
    animation-name: flipFront;
}

.animated .back {
    animation-name: flipBack;
}

@keyframes flipFront {
    0% {
        transform: rotateX(0deg);
        background-color: #444;
    }

    100% {
        transform: rotateX(180deg);
        background-color: #1c1c1c;
    }
}

@keyframes flipBack {
    0% {
        transform: rotateX(180deg);
        background-color: #222;
    }

    100% {
        transform: rotateX(0deg);
        background-color: #444;
    }
}


/*=====================Departure Board ================================*/



/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
    display: flex;
    align-items: stretch;
}

#sidebar {
    margin-left: 0; /* bug fuxed*/
    min-width: 250px;
    max-width: 250px;
    /*            background: black;*/
    color: #fff;
    transition: all 2s cubic-bezier(0.945, 0.02, 0.27, 0.665);
    transform-origin: bottom left;
    /*         background-color: #646464;*/
    /*      background-color: black;*/
    text-align: center;
    position: sticky; /* or 'fixed' */
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

    #sidebar.ver {
        margin-left: -250px;
        transform: rotateY(100deg);
        transform-origin: top left;
    }

    #sidebar .sidebar-header {
        padding: 18px;
        background: #808080;
        background-color: #444;
    }

    #sidebar ul.components {
        padding: 20px 0;
    }

    #sidebar ul p {
        color: #fff;
        padding: 10px;
    }

    #sidebar ul li a {
        padding: 10px;
        font-size: 1.1em;
        display: block;
    }

        #sidebar ul li a:hover {
            color: #7386d5;
            background: #fff;
        }

    #sidebar ul li.active > a,
    a[aria-expanded="true"] {
        color: #fff;
        background: #6d7fcc;
    }

#content {
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}


#sidebarCollapseButton {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    /* background: #ecdb41;*/
}

    #sidebarCollapseButton span {
        width: 80%;
        height: 2px;
        margin: 0 auto;
        display: block;
        background: #555;
        transition: all 1s cubic-bezier(0.81, -0.33, 0.345, 1.375);
        transition-delay: 0.2s;
    }

        #sidebarCollapseButton span:first-of-type {
            transform: rotate(45deg) translate(2px, 2px);
        }

        #sidebarCollapseButton span:nth-of-type(2) {
            opacity: 0;
        }

        #sidebarCollapseButton span:last-of-type {
            transform: rotate(-45deg) translate(1px, -1px);
        }

    #sidebarCollapseButton.ham span {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }


@media (max-width: 768px) {

    #sidebar {
        margin-left: -250px;
        transform: rotateY(90deg);
    }

        #sidebar.ver {
            margin-left: 0;
            transform: none;
        }

    #sidebarCollapseButton span:first-of-type,
    #sidebarCollapseButton span:nth-of-type(2),
    #sidebarCollapseButton span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }

    #sidebarCollapseButton.ham span {
        margin: 0 auto;
    }

        #sidebarCollapseButton.ham span:first-of-type {
            transform: rotate(45deg) translate(2px, 2px);
        }

        #sidebarCollapseButton.ham span:nth-of-type(2) {
            opacity: 0;
        }

        #sidebarCollapseButton.ham span:last-of-type {
            transform: rotate(-45deg) translate(1px, -1px);
        }
}


#sidebar ul li {
    list-style: none;
    color: white;
    text-decoration: none;
}

    #sidebar ul li a:hover {
        text-decoration: underline;
        color: #6d7fcc;
    }

#sidebar ul.bulleted-list li {
    list-style: disc inside !important;
    margin-left: 0;
}

#sidebar ul.bulleted-list {
    padding: 0;
    margin: 0;
}


a[data-toggle="collapse"] {
    position: relative;
}

a[aria-expanded="false"]::before,
a[aria-expanded="true"]::before {
    content: "\e259";
    display: block;
    position: absolute;
    right: 20px;
    font-family: "Glyphicons Halflings";
    font-size: 0.6em;
}

a[aria-expanded="true"]::before {
    content: "\e260";
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}



a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */





.CompletionListCssClass {
    font-family: "Roboto Condensed";
    list-style-type: none;
    color: black; /* Changed from white to black */
    font-size: small;
    background-color: white; /* Changed from black to white */
    margin: 0;
    padding: 0;
    list-style-type: none; /* optional, removes bullets */
}

.CompletionListHighlightedItemCssClass {
    font-family: "Roboto Condensed";
    color: white; /* Changed from black to white */
    background-color: black; /* Changed from white to black */
}

.CompletionListItemCssClass {
    font-family: "Roboto Condensed";
    color: black; /* Changed from lightgray to darkgray */
    background-color: white; /* Changed from black to white */
}

.navrow {
    /*    flex: 85%;*/
    /*       background-color: red;*/
    /* padding: 20px; */
    /*      overflow: hidden;*/
    height: 100%;
    width: 100%;
}




.mapboxold {
    background-color: grey;
    padding: 0px;
    border: 5px dashed grey;
    box-shadow: 0 0 0 2.5px #4d4d4d, inset 0 0 0 2.5px #4d4d4d, 0 5px 10px 15px rgba(0, 0, 0, 0.5), inset 0 0 0 6px #fff, inset 0 0 100vw 100vw rgb(100, 100, 100);
}

.mapboxold2 {
    background-color: grey;
    padding: 0px;
    border: 5px dashed grey;
    box-shadow: 0 0 0 2.5px #4d4d4d, inset 0 0 0 2.5px #4d4d4d, 0 5px 10px 15px rgba(0, 0, 0, 0.5), inset 0 0 0 6px #fff, inset 0 0 100vw 100vw rgba(100, 100, 100, 0.4); /* <--- now semi-transparent */
}

.mapboxold3 {
    background-color: #333; /* Dark grey for contrast */
    padding: 0px;
    border: 5px dashed white; /* Visible contrast */
    box-shadow: inset 0 0 0 2.5px #4d4d4d, 0 5px 10px 15px rgba(0, 0, 0, 0.5), inset 0 0 0 6px #fff, inset 0 0 100vw 100vw rgba(100, 100, 100, 0.4);
}

.mapboxold4 {
    background-color: #1b1b1b; /* deep, map-like background */
    padding: 0px;
    border: 6px double #e0c97f; /* double line border for classic atlas style */
    box-shadow: 0 0 0 3px #4a3f28, /* dark trim around border */
    inset 0 0 0 3px #c0a860, /* inner goldish trim */
    0 10px 25px rgba(0, 0, 0, 0.6), /* soft outer shadow */
    inset 0 0 60px rgba(255, 255, 255, 0.05); /* soft light glow for aged effect */
    border-radius: 8px;
}







.mainpanel {
    /*    flex: 85%;*/
    background-color: #222;
    /* padding: 20px; */
    /*  overflow: hidden;*/
    height: 100%;
    width: 100%;
    padding: 0px;
    /*     --bs-gutter-x: 0px;*/
}



/*#mapContainer {*/
/*    position: sticky;
    top: 0;*/
/*padding: 0px;*/
/*  overflow: visible;*/
/*position: relative;
    box-sizing: border-box;*/
/*    padding: 3px;*/
/*}*/




/* On screens smaller than or equal to 600px, remove padding */
@media (max-width: 600px) {
    .map-inner {
        padding: 0;
    }
}


/* Outer container with border */
#mapContainer {
    width: 100%; /* full width */
    border: 6px double #e0c97f;
    border-radius: 12px;
    background-color: #1b1b1b;
    position: relative;
    box-sizing: border-box; /* include border in width */
    overflow: hidden;
    padding: 0; /* no padding inside */
}





.arcPathIn {
    fill: none;
    opacity: 1;
    stroke-width: 2;
    stroke-dasharray: 10, 4;
    animation: flow 1s linear infinite;
    -webkit-animation: flow 1s linear infinite;
}

.arcPathOut {
    fill: none;
    opacity: 1;
    stroke-width: 2;
    stroke-dasharray: 10, 4;
    animation: flow 1s linear infinite;
    -webkit-animation: flow 1s linear infinite;
}

@keyframes flow {
    from {
        stroke-dashoffset: 14;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes flow {
    from {
        stroke-dashoffset: 14;
    }

    to {
        stroke-dashoffset: 0;
    }
}


.flyingArcPathInOut {
    stroke: grey;
    stroke-width: 3;
    fill: none;
    stroke-linejoin: round;
    box-shadow: none;
    border: none;
    outline: none;
}

.flyingArcPathOut {
    stroke: red;
    stroke-width: 3;
    fill: none;
    stroke-linejoin: round;
    box-shadow: none;
    border: none;
    outline: none;
}

.flyingArcPathIn {
    stroke: blue;
    stroke-width: 3;
    fill: none;
    stroke-linejoin: round;
    box-shadow: none;
    border: none;
    outline: none;
}

    .flyingArcPathInOut:hover, .flyingArcPathOut:hover, .flyingArcPathIn:hover {
        opacity: 1;
        stroke-width: 4;
    }

.arcPathInOut, .arcPathOut, .arcPathIn {
    box-shadow: none;
    border: none;
    outline: none;
}


.land {
    fill: #222;
}

globe {
    stroke: rgba(255, 255, 255, .5);
    stroke-width: .25px;
}

.globe {
    fill: var(--ocean-bg);
    /* water color */
    /* fill: rgb(148, 165, 219);*/
    /*     fill: rgb(144, 175, 183);  */
    /* fill: rgb( 207, 232, 238);     nice */
    /*    fill: rgb(134, 155, 176)  no */
    /* fill: rgb( 221, 221, 255);   */
    /* fill: rgb(253, 0, 0);  */
    /* fill: "ddddff" */
    /* stroke-width: 20px; */
}

.graticule {
    fill: none;
    /*  stroke: #777;*/
    stroke: var(--graticule-stroke);
    /* stroke: #0d0d0d;*/
    stroke-width: .5px;
    stroke-opacity: .5;
}

    .graticule.outline {
        stroke-width: 2px;
    }



#airportup:hover {
    fill: yellow;
}

.iconsvg {
    /* width: 30;
                  height: 30; */
    fill: darkgrey;
}

.airporttext {
    font-size: small;
    font-family: 'Roboto Condensed';
    fill: black;
}


/* Style the dropdown to stand out */
.contrast-dropdown {
    background-color: #f8f9fa; /* Light background to contrast with dark theme */
    color: #212529; /* Dark text for contrast */
    border: 1px solid #ced4da; /* Bootstrap default border */
}

    /* Hover and focus states for contrast */
    .contrast-dropdown:focus,
    .contrast-dropdown:hover {
        background-color: #ffffff; /* White background for hover/focus */
        border-color: #999; /* Lighter border when hovered/focused */
        color: #000; /* Dark text on hover/focus for readability */
    }

    /* Customize the options inside the dropdown */
    .contrast-dropdown option {
        background-color: #ffffff;
        color: #000; /* Dark text for option readability */
    }

    /* Optional: Adding focus outline and making it visually sharper */
    .contrast-dropdown:focus {
        outline: none; /* Removes default focus outline */
        box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.6); /* Adds custom focus outline */
    }


/* Add shadow effect to make dropdown pop */
.contrast-dropdown {
    /* font-weight: 600;*/
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2); /* Adds soft shadow */
}

/* Bold effect when hovering over options */
/*.contrast-dropdown option:hover {
        font-weight: 700;*/ /* Bold text on hover */
/*}*/

/* Generic class for high-contrast select dropdown */
.select-contrasted {
    background-color: #f8f9fa; /* Light background to contrast with dark theme */
    color: #212529; /* Dark text */
    border: 1px solid #ced4da; /* Bootstrap default border */
}

    /* Hover and focus states for the select dropdown */
    .select-contrasted:focus,
    .select-contrasted:hover {
        background-color: #ffffff; /* White background for hover/focus */
        border-color: #999; /* Lighter border on hover/focus */
        color: #000; /* Dark text on hover/focus for readability */
    }

    /* Customize options inside the dropdown */
    .select-contrasted option {
        background-color: #ffffff;
        color: #000; /* Dark text for option readability */
    }

    /* Optional: Adding focus outline and making it visually sharper */
    .select-contrasted:focus {
        outline: none; /* Removes default focus outline */
        box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.6); /* Adds custom focus outline */
    }





/* Atmospheric Glow (Outer Circle) */
.atmosphere-glow {
    fill: url(#atmosphereGlow); /* Use gradient defined in SVG */
    filter: blur(15px); /* Soft glow effect */
    opacity: 0.3; /* Semi-transparent glow */
    pointer-events: none; /* Avoid interactions with the glow */
}

/* Radial Gradient for Atmosphere Glow */
#atmosphereGlow {
    stop-color: lightblue;
    stop-opacity: 0.5;
    transition: stop-opacity 1s ease-in-out;
}

    #atmosphereGlow stop:last-child {
        stop-opacity: 0;
    }


.atmosphere-glow {
    animation: pulseGlow 3s infinite ease-in-out;
}





/* Main dropdown container */
.ui-autocomplete {
    background-color: #fff; /* White background */
    color: #222; /* Very dark text */
    border: 1px solid #ccc; /* Light gray border */
    max-height: 400px;
    overflow-y: auto;
    font-size: 14px;
    z-index: 10000 !important; /* Make sure it appears on top */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* subtle shadow */
}

/* Individual item wrapper */
.ui-menu-item-wrapper {
    padding: 8px 12px;
    background-color: #fff; /* White background */
    color: #222; /* Dark text */
    cursor: pointer;
}

    /* Hover/focus effect */
    .ui-menu-item-wrapper.ui-state-active {
        background-color: #007bff; /* Bootstrap primary blue */
        color: #fff; /* White text on selection */
        font-weight: 600;
    }

/* Optional: for sharp focus */
.ui-autocomplete:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.5);
}






.input-with-spinner {
    position: relative;
    width: 100%;
}

.search-box {
    width: 100%;
    padding-right: 35px; /* Room for spinner */
    box-sizing: border-box;
}

.spinnerold {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.2); /* Light gray outer border */
    border-top-color: #000000; /* Solid black for strong contrast */
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    transform: translateY(-50%);
    background-color: transparent;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4); /* Soft black glow */
}

@keyframes spinold {
    to {
        transform: rotate(360deg);
    }
}

.aircraft-spinner {
    width: 100px;
    height: 100px;
    animation: aircraft-spin 1.4s linear infinite;
    transform-origin: center;
    display: inline-block;
    fill: #FFA500; /* aircraft color */
}

@keyframes aircraft-spin {
    to {
        transform: rotate(360deg);
    }
}


.spinner {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    /*    width: 64px;
    height: 64px;*/
    border: 6px solid rgba(0, 153, 255, 0.2); /* outer light blue */
    border-top: 6px solid #0099FF; /* solid blue "Earth" edge */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}










.bg-light.text-dark a {
    color: #212529; /* Bootstrap's text-dark color */
}

    .bg-light.text-dark a:hover {
        color: #0a58ca; /* Optional: Bootstrap's default link hover color */
        text-decoration: underline;
    }


/*.custom-article-container {*/
/* max-width: 960px;*/
/*margin-left: auto;
    margin-right: auto;
    background-color: #f8f9fa;*/ /* Equivalent to Bootstrap's bg-light */
/*color: #212529;*/ /* Equivalent to Bootstrap's text-dark */
/*border: 10px solid #c0c0c0;*/ /* silver border instead of #999 */
/*border-radius: 2rem;*/ /* Equivalent to Bootstrap's rounded-4 */
/*padding: 1.5rem;*/ /* Equivalent to Bootstrap's p-4 */
/*line-height: 1.75;*/ /* Approx Bootstrap's lh-base */
/*font-size: 1.25rem;*/ /* Approx Bootstrap's fs-5 */
/*font-weight: 400;*/ /* Equivalent to Bootstrap's fw-normal */
/*box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    margin-top: 3rem !important;*/ /* my-5 = 3rem top & bottom */
/*margin-bottom: 3rem !important;
}*/
.custom-article-container {
    /* max-width: 960px; */
    margin-left: auto;
    margin-right: auto;
    background-color: #f8f9fa; /* Bootstrap's bg-light */
    color: #212529; /* Bootstrap's text-dark */
    border: 8px double #c0c0c0; /* double silver-ish border */
    border-radius: 2rem; /* rounded corners */
    padding: 1.5rem; /* padding */
    line-height: 1.75;
    font-size: 1.25rem;
    font-weight: 400;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
    text-align: left;
}


    .custom-article-container a {
        color: #212529; /* Bootstrap's text-dark */
        text-decoration: underline;
    }

        .custom-article-container a:hover {
            color: #0a58ca; /* Bootstrap's default link hover */
            text-decoration: none;
        }

.custom-modal-content {
    background-color: #f8f9fa !important; /* Bootstrap's light gray */
    color: #212529; /* Bootstrap's text-dark color */
}







/* disable content input*/

.input-group input.form-control:disabled {
    background-color: #2c2c2c !important;
    color: #aaa !important;
    border-color: #444 !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
}



 


.container.my-5 {
    min-height: 2000px; /* Try bumping slightly to 1200px if your content shifts on load */
    overflow-anchor: none; /* Prevent anchor shifts during loading */
}

img {
    max-width: 100%;
    height: auto; /* keeps ratio */
    display: block;
}

/*img {
    height: auto;
    width: 100%;
    max-height: 500px;
}*/


/* Inner wrapper that contains only SVG */
.map-inner {
    width: 100%; /* fill container horizontally */
    height: 0; /* will be set dynamically to keep square */
    padding: 0; /* no padding */
    margin: 0; /* no margin */
    box-sizing: border-box;
    position: relative;
}

/* SVG fills map-inner exactly */
#mysvg {
    width: 100%;
    height: 100%;
    display: block; /* remove default inline spacing */
    position: absolute;
}

/* Optional: canvas or iframe also fill the wrapper */
#mycanvas,
#myiframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#mycanvas {
    padding: 0px;
    overflow: clip;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 3;
    pointer-events: none !important; /*pass click through*/
}



#myiframe {
    overflow: clip; /* avoids drawing on side bar */
    padding: 0px;
    /*    align-self: flex-start;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*    background-color: rgb(100, 100, 100);*/
    background-color: transparent;
    /* left: 0; */
    /* background-color: rgb(199, 138, 138); */
    /* position: relative; */
    /* top: 0; */
    /* overflow: visible; */
    /* display: inline !important; */
    z-index: 0;
    /* z-index: -1;  */
    /* z-index: 1; */
}



.mapbox {
    padding: 0px;
}

img:not(.static_map) {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* remove width:auto and maybe max-height:500px */
}

img.scale-to-container {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or "cover" depending on desired behavior */
    object-position: center;
    display: block;
}

.static_map {
    position: absolute; /* overlap map div */
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain; /* maintain aspect ratio */
    display: block;
    z-index: 0; /* behind map if map exists */
}


#myairportmap,
#myairportmapsat {
    width: 100%;
    height: auto; /* or set dynamically with JS */
    min-height: 600px;
}


.mapblockpics {
    position: relative;
    width: 100%;
    padding: 0; /* remove any padding that pushes image down */
    margin: 0 auto;
    min-height: 600px;
}

    .mapblockpics > div {
        position: relative;
        z-index: 1;
    }

#placeholder-img-airport {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block;
    margin: 1rem auto 0 auto; /* optional spacing */
}




/*
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}*/

/*.hero {
    background: #002244;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

    .hero h1 {
        font-size: 2.5rem;
    }*/

/*.btn {
    background: #0077cc;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}*/

/*.section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: auto;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.col {
    flex: 1;
    min-width: 250px;
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

    .plans-table th, .plans-table td {
        border: 1px solid #ccc;
        padding: 1rem;
        text-align: left;
    }

.cta {
    background: #f8f8f8;
    text-align: center;
    padding: 3rem 2rem;
}*/


p {
    max-width: 60em;
    text-align: justify;
}


.custom-container-default {
    /* Based on .container.my-5 */
    margin-top: 3rem !important; /* my-5 = 3rem top & bottom */
    margin-bottom: 3rem !important;
    /* Your customizations */
    /*// min-height: 2048px; */ /* Or dynamically calculated */
    /*aspect-ratio: 16 / 9;*/ /* Optional: helps with responsive height */
}


.lifaq {
    display: block;
    text-decoration: none;
    padding: 6px 12px;
    /* color: #007bff;*/ /* Bootstrap primary color or customize */
    font-weight: 400;
    list-style: none !important;
}

    .lifaq:hover {
        text-decoration: underline;
        background-color: #f8f9fa;
    }

/* Optional: Remove list-style marker from the <li> */
#listarticle li {
    list-style: none;
    margin-bottom: 4px;
}


#listarticle {
    padding-left: 0;
    margin: 0;
}

    #listarticle .nav-link.lifaq {
        color: #333;
        padding: 0.75rem 1rem;
        border-left: 3px solid transparent;
        transition: all 0.2s ease-in-out;
    }

        #listarticle .nav-link.lifaq:hover,
        #listarticle .nav-link.lifaq.active {
            background-color: #f8f9fa; /* light gray */
            border-left: 3px solid #007bff;
            color: #000;
        }




.contact-large-font {
    font-size: 1.5rem; /* or 1.25rem, 18px, etc. */
    line-height: 1.6;
}

.sidebar-border {
    background-color: #343a40; /* dark background */
    border: 2px solid #6c757d; /* outer border */
    outline: 2px solid #adb5bd; /* second border layer */
    outline-offset: -6px; /* pulls the outline closer */
    border-radius: 0.75rem; /* rounded corners */
    padding: 1rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.3); /* optional depth */
}

.btn {
    /* other styles */
}





.myswitches {
    background-color: #989ea5; /* light background */
    padding: 1rem;
    border-radius: 0.25rem;
}

.carousel-caption2 {
    color: #222;
    text-shadow: 1px 1px 0 #fff, /* Highlight bottom-right */
    -1px -1px 0 #000, /* Shadow top-left */
    1px -1px 0 #000, /* Shadow top-right */
    -1px 1px 0 #000; /* Shadow bottom-left */
}

.carousel-caption {
    /*font-weight: bold;*/
    /* font-size: 2rem;*/
    color: #000; /* black text */
    background: #d3d3d3; /* light grey background */
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}


figcaption {
    text-align: center;
}

.btn-linkedin {
    background-color: #0077B5;
    color: white;
    border-color: #0077B5;
}

    .btn-linkedin:hover {
        background-color: #005983;
        border-color: #005983;
    }


.svg-title {
    /* font-family: "Segoe UI", sans-serif;*/
    font-size: 16px;
    fill: #333; /* Use 'color' if it's HTML, 'fill' if SVG */
    /*text-anchor: middle;*/ /* SVG specific */
    dominant-baseline: middle; /* Optional for vertical alignment */
}

.svg-cursor-style {
    /* font-family: "Segoe UI", sans-serif;*/
    font-size: 16px;
    fill: black; /* Use 'color' if it's HTML, 'fill' if SVG */
    /*text-anchor: middle;*/ /* SVG specific */
    dominant-baseline: middle; /* Optional for vertical alignment */
}


#profile {
    cursor: grab;
}

.video-container {
    position: relative;
    border: 2px solid #ccc;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

video {
    width: 100%;
    height: auto;
    display: block;
    text-center;
}

.caption {
    font-size: 1rem;
    margin-bottom: 10px;
    font-style: italic;
}

.disclaimer {
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 20px;
}




:root {
    --mapbox-bg: #636060;
    --main-bg: #737373;
    --contrast-dropdown-bg: red;
    --bg-dark: #000000;
    --btn-primary: #1d569a;
    --font-color: black;
    --globe-bg: #4f4f4f;
    --sidebar-bg: black;
    --ocean-bg: #94a5db;
    --graticule-stroke: #0d0d0d;
    --wind-particule-color: #333333;
    --wind-particule-color-satellite: #eeeeee;
    /*preeloader*/
    --earth-size: 300px; /* globe diameter */
    --orbit-size: 420px; /* orbit container size */
    --orbit-radius: calc(var(--orbit-size)/2);
    --plane-size: 28px; /* plane icon size */
    --trail-length: 120; /* visible trail arc length */
    --trail-width: 6; /* trail thickness */
    --trail-offset: 180deg; /* rotation offset for trail behind plane */
    --orbit-duration: 8s; /* time for full rotation */

    --bs-warning: #f89406;

}

[data-theme="dark"] {
    --wind-particule-color: #ffffff; /* dark mode -wind white*/
}


.mapbox {
    background-color: var(--mapbox-bg);
}

.mainpanel {
    background-color: var(--main-bg);
}

.contrast-dropdown {
    background-color: var(--contrast-dropdown-bg);
}

.bg-dark {
    background-color: var(--bg-dark) !important;
}

.btn-primary {
    background-color: var(--btn-primary);
}

body {
    background-color: var(--font-color);
}


#mapContainer {
    background-color: var(--globe-bg);
}


.sidebar-border {
    background-color: var(--sidebar-bg);
}


.footer {
    position: relative; /* <-- required for absolute children */
    padding: 0px;
    text-align: center;
    /* background-color: rgb(0, 0, 0); */
    /* background: rgb(49, 49, 49); */
    /* background-color: rgb(129, 129, 129); */
}

.theme-controls {
    background-color: black;
    color: darkslategrey;
    position: absolute;
    left: 1rem; /* offset from the edge */
    top: 0.5rem; /* adjust vertically */
    display: flex;
    gap: 0.5rem; /* spacing between button and select */
}

/* Make all checkboxes bigger across the site */
input[type="checkbox"] {
    transform: scale(1.6); /* adjust size (1 = default, try 1.2–1.6) */
    margin-right: 6px; /* space between box and label text */
    cursor: pointer; /* better UX */
}





.frammed {
    border: 8px double #c0c0c0;
    padding: 1rem;
    border-radius: 20px;
}


/*------------------------------
    PRELOADER
-------------------------------*/
.preeloader {
    background: #444; /* dark overlay */
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    display: flex; /* centers spinner */
    align-items: center;
    justify-content: center;
}

.preloader-spinner {
    background: #fff; /* visible white dot */
    border-radius: 50%; /* make it a circle */
    height: 40px;
    width: 40px;
    animation: pulsate 1s ease-out infinite;
}

@keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


.text-end {
    text-align: right;
}





 

/*html, body {
    height: 100%;
    margin: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto, sans-serif;
}*/

.globe-wrapper {
    position: relative;
    width: var(--earth-size);
    height: var(--earth-size);
}

/*.earth {
    width: var(--earth-size);
    height: var(--earth-size);
    border-radius: 50%;
    box-shadow: -20px -20px 50px 2px #000 inset, 0 0 20px 2px #000;
    background-image: url(/images/earth.jpg);
    background-repeat: repeat;*/ /* tile the texture */
    /*background-position: 0 0;
    background-size: auto;*/ /* original image size */
    /*animation: spin 12s linear infinite;
}*/

.earth {
    width: var(--earth-size);
    height: var(--earth-size);
    border-radius: 50%;
    box-shadow: -20px -20px 50px 2px #000 inset, 0 0 20px 2px #000;
    background-image: url(/images/earth.jpg);
    background-repeat: no-repeat;
    background-size: cover; /* fill the circle */
    background-position: center center; /* center the globe */
    animation: spin 12s linear infinite;
}

@keyframes spin {
    to {
        background-position: 200% 0;
    }
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--orbit-size);
    height: var(--orbit-size);
    margin-left: calc(-1*var(--orbit-radius));
    margin-top: calc(-1*var(--orbit-radius));
    animation: orbit-rotate var(--orbit-duration) linear infinite;
    transform-origin: 50% 50%;
}

@keyframes orbit-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit svg {
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(-90deg); /* start trail at top */
}

.trail {
    fill: none;
    stroke-width: var(--trail-width);
    stroke-linecap: round;
    stroke: url(#trailGrad);
    filter: blur(1px);
    stroke-dasharray: var(--trail-length) 9999; /* short arc */
    transform-origin: 50% 50%;
    transform: rotate(var(--trail-offset)); /* slightly behind plane */
}

.plane {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--plane-size);
    height: var(--plane-size);
    font-size: var(--plane-size);
    color: white;
    transform: translate(-50%, calc(-1*var(--orbit-radius)));
    transform-origin: center;
    z-index: 2;
    text-shadow: 0 0 6px rgba(255,255,255,0.3);
}




.hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, #2a2a2a 0%, #1c1c1c 70%, #0f0f0f 100%);
    color: #f5f5f5;
    border-bottom: 6px solid  var(--ocean-bg); /* subtle divider accent */
}

    /* Soft glow at the bottom so it blends into the next (globe) section */
    .hero::after {
        content: "";
        position: absolute;
        bottom: -40px;
        left: 0;
        width: 100%;
        height: 80px;
        background: radial-gradient(ellipse at center, var(--ocean-bg), transparent 70%);
        filter: blur(30px);
        pointer-events: none;
    }

    /* Text styling */
    .hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        letter-spacing: 2px;
        color: #ffffff;
        text-shadow: 0 0 8px var(--ocean-bg);
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 720px;
        margin: 0 auto 2rem auto;
        color: antiquewhite;
    }

    /* CTA button */
    .hero a {
        background: var(--ocean-bg);
        color: #fff;
        padding: 0.75rem 1.5rem;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
    }

        .hero a:hover {
            background: #90ee90; /* green hover to hint at globe continents */
            color: #111;
        }


.my-shepherd-theme {
    background: #ffffff;
    color: #212529;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

    .my-shepherd-theme .shepherd-button {
        background: #007bff;
        color: #fff;
        border-radius: 6px;
    }

        .my-shepherd-theme .shepherd-button:hover {
            background: #0056b3;
        }


.shepherd-element.my-shepherd-theme {
    background-color: var(--bs-warning) !important;
    color: #212529 !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}
.shepherd-text {
    font-weight: 700;
    color: black;
    font-size: 1rem;
    line-height: 1.3em;
    padding: .75em;
}

.shepherd-arrow:before {
    background: var(--bs-warning) !important;
    }


.my-shepherd-theme .shepherd-button {
    background: #373d42;
}

.shepherd-element.my-shepherd-theme .shepherd-arrow,
.shepherd-element.my-shepherd-theme .shepherd-arrow::before {
    width: 24px;
    height: 24px;
}
