    /*GENERAL STYLES OF THE PAGE*/
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    .fa,
    .fas,
    .far,
    .fab {
        font-family: "Font Awesome 6 Free", sans-serif !important;
        font-weight: 900;
        /* Asegúrate de incluir el peso correcto */
    }

    html {
        height: 100%;
        width: 100%;
    }

    canvas {
        outline: none;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
        /* mobile webkit */
    }

    body {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .loading {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        /*background: #787878a1;*/
        background: #787878;
        position: absolute;
        z-index: 9999;
    }


    #renderCanvas {
        width: 100%;
        height: 100%;
        touch-action: none;
    }

    /* ===== Scrollbar CSS ===== */
    /* Firefox */
    * {
        scrollbar-width: none;
        scrollbar-color: #dadada #ffffff;
    }

    /* Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
        width: 0px;
    }

    *::-webkit-scrollbar-track {
        background: #ffffff;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #dadada;
        border-radius: 6px;
        border: 10px none #ffffff;
    }

    .logo-image {
        width: 30px;
        height: 25px;
    }

    .menu {
        width: 15%;
        background-color: rgba(249, 249, 249, 0.8) !important;
        height: 100%;
        overflow-y: scroll;
        transition: transform 0.3s ease;
        transform: translateX(0);
        /* Visible por defecto */
    }

    .menu:not(.visible) {
        transform: translateX(-100%);
    }

    #toggle-menu {
        left: 15%;
        position: absolute;
        transition: left 0.3s ease;
        /* Movimiento suave del botón */
    }

    .menu:not(.visible)+#toggle-menu {
        left: 0;
        /* Botón al borde izquierdo cuando el menú está oculto */
    }

    #toggle-icon.rotate {
        transform: rotate(180deg);
        /* Gira la flecha al ocultar */
    }

    #arrow-icon {
        transition: transform 0.3s ease;
        /* Rotación suave del ícono */
    }

    .menu:not(.visible)+div>#toggle-menu #arrow-icon {
        transform: rotate(180deg);
        /* Gira la flecha hacia la derecha */
    }

    .aircraft-number {
        border: 1px solid black !important;
        border-radius: 0px !important;
    }

    .menu-title {
        font-weight: bold;
    }

    hr {
        color: #757575 !important;
        background-color: #757575 !important;
        opacity: 1 !important;
    }

    .btn {
        border-radius: 0 !important;
        text-align: left !important;
    }

    .btn-selected {
        background-color: #0078A9 !important;
        color: white !important;
    }

    .btn-white {
        background-color: white !important;
    }

    .btn-white:hover {
        background-color: #C6E1EB !important;
    }

    .accordion-button:not(.collapsed) {
        background-color: white !important;
    }

    .accordion-button:focus {
        box-shadow: none !important;
        border-color: rgba(0, 0, 0, .125) !important;
    }

    .accordion-body {
        display: flex;
        flex-wrap: wrap;
        padding: 0 !important;
    }

    .color-option {
        aspect-ratio: 1 / 1;
        width: 25%;
        background-color: red;
    }

    .color-option:hover {
        border: 5px solid white;
        cursor: pointer;
        transition: border 0.3s ease;
    }

    .color-text {
        font-size: 12px;

    }

    .form-control {
        border: 1px solid #757575 !important;
    }

    .commander {
        position: absolute;
        margin-inline: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: fit-content;
    }

    .commander-button-text {
        font-size: 12px;
        margin-top: 10px;
    }

    .ppg-title {
        position: absolute;
        margin-inline: auto;
        top: 1rem;
        left: 0;
        right: 0;
        width: fit-content;
    }

    .powered-by {
        position: absolute;
        margin-inline: auto;
        bottom: 1rem;
        right: 1rem;
        width: fit-content;
    }

    .disclaimer {
        margin: 0.50rem !important;
        padding: 0;
        font-style: italic;
        font-size: 0.75rem;
    }

    .form {
        background-color: rgba(249, 249, 249, 0.8) !important;
        max-width: 500px;
    }


    .pdf-wrapper {
        /* width: 75%; */
        display: flex;
    }

    .pdf-button {
        display: flex;
        align-items: start;
    }


    @media (max-width: 1200px) {
        .menu {
            width: 25%;
        }

        #toggle-menu {
            left: 25%;
        }

        .disclaimer {
            font-size: 0.50rem;
        }

        .form {
            min-height: 100% !important;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

    }

    /* @media (max-width: 800px) {

     
    } */

    @media (orientation: portrait) {
        .pdf-wrapper {
            flex-direction: column;
        }

        .pdf-button {
            flex-direction: row;
            justify-content: end;
        }

        .pdf-container {
            width: 100%;
            height: 95%;
        }
    }

    @media (orientation: landscape) {
        .pdf-wrapper {
            flex-direction: row-reverse;
        }

        .pdf-button {
            flex-direction: column-reverse;
            justify-content: start;
        }

        .pdf-container {
            width: 90%;
            height: 100%;
        }


        #data-download-viewer {
            text-align: center !important;
            width: 100%;
        }

        #data-close-viewer {
            text-align: center !important;
            width: 100%;
        }
    }