/* /Components/Layout/AuthLayout.razor.rz.scp.css */
.auth-layout[b-2sxbcvkncq] {
    min-height: 100vh;
    width: 100%;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-x3a82tcixw] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-x3a82tcixw] {
    flex: 1;
    min-width: 0;
}

.sidebar[b-x3a82tcixw] {
    background:
        linear-gradient(
            180deg,
            #0b2b6f 0%,
            #20145d 55%,
            #47004e 100%);
}

.top-row[b-x3a82tcixw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.5rem;
    gap: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
}

.monitoring-status[b-x3a82tcixw] {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 0.55rem;
    color: #46515c;
    font-size: 0.82rem;
    font-weight: 600;
}

.monitoring-indicator[b-x3a82tcixw] {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.13);
}

.monitoring-label[b-x3a82tcixw] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu[b-x3a82tcixw] {
    position: relative;
    min-width: 0;
    margin-left: auto;
}

.user-menu-summary[b-x3a82tcixw] {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 0.55rem;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    list-style: none;
}

.user-menu-summary[b-x3a82tcixw]::-webkit-details-marker {
    display: none;
}

.user-menu-summary:hover[b-x3a82tcixw],
.user-menu[open] .user-menu-summary[b-x3a82tcixw] {
    background: #e9ecef;
}

.user-avatar[b-x3a82tcixw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    background: #e3e8ef;
    font-size: 0.85rem;
}

.user-summary-details[b-x3a82tcixw],
.user-menu-identity[b-x3a82tcixw] {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.user-name[b-x3a82tcixw] {
    max-width: 16rem;
    overflow: hidden;
    color: #17212b;
    font-size: 0.76rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-role[b-x3a82tcixw],
.user-menu-identity span[b-x3a82tcixw] {
    margin-top: 0.1rem;
    color: #6c757d;
    font-size: 0.66rem;
}

.user-menu-caret[b-x3a82tcixw] {
    color: #6c757d;
    font-size: 0.7rem;
}

.user-menu-dropdown[b-x3a82tcixw] {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    z-index: 20;
    width: min(17rem, calc(100vw - 2rem));
    padding: 0.45rem;
    border: 1px solid #d7dce1;
    border-radius: 9px;
    background: white;
    box-shadow: 0 0.5rem 1.25rem rgba(24, 35, 46, 0.16);
}

.user-menu-identity[b-x3a82tcixw] {
    padding: 0.55rem 0.65rem 0.7rem;
    border-bottom: 1px solid #e6e9ec;
}

.user-menu-identity strong[b-x3a82tcixw] {
    overflow-wrap: anywhere;
    font-size: 0.78rem;
}

.user-menu-item[b-x3a82tcixw] {
    display: block;
    width: 100%;
    padding: 0.55rem 0.65rem;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #263746;
    font: inherit;
    font-size: 0.78rem;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.user-menu-item:hover[b-x3a82tcixw] {
    background: #f1f3f5;
    color: #006bb7;
}

.logout-form[b-x3a82tcixw] {
    margin: 0;
    padding-top: 0.3rem;
    border-top: 1px solid #e6e9ec;
}

.logout-button[b-x3a82tcixw] {
    color: #b42318;
}

.content[b-x3a82tcixw] {
    padding-top: 1.1rem;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 641px) {

    .page[b-x3a82tcixw] {
        flex-direction: row;
    }

    .sidebar[b-x3a82tcixw] {
        position: sticky;
        top: 0;

        width: 250px;
        min-width: 250px;

        height: 100vh;

        flex: 0 0 250px;

        overflow: hidden;
    }

    main[b-x3a82tcixw] {
        width: calc(100% - 250px);
        min-width: 0;
    }

    .top-row[b-x3a82tcixw] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-x3a82tcixw],
    article[b-x3a82tcixw] {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640.98px) {

    .top-row[b-x3a82tcixw] {
        justify-content: space-between;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .sidebar[b-x3a82tcixw] {
        width: 100%;
        min-width: 0;
    }

    .content[b-x3a82tcixw] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}


/* =========================================================
   BLAZOR ERROR
========================================================= */

#blazor-error-ui[b-x3a82tcixw] {
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    background: lightyellow;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    color: #212529;
}

#blazor-error-ui .dismiss[b-x3a82tcixw] {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    cursor: pointer;
}

#blazor-error-ui .reload[b-x3a82tcixw] {
    margin-left: 0.5rem;
}

@media (max-width: 480px) {

    .top-row[b-x3a82tcixw] {
        gap: 0.5rem;
    }

    .user-summary-details[b-x3a82tcixw],
    .user-menu-caret[b-x3a82tcixw] {
        display: none;
    }

    .user-menu-summary[b-x3a82tcixw] {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-aqqvz3bm0j] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
        no-repeat center/1.75rem
        rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-aqqvz3bm0j] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-aqqvz3bm0j] {
    min-height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.4);
}


/* =========================================================
   MARCA
========================================================= */

.brand-container[b-aqqvz3bm0j] {
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar-brand[b-aqqvz3bm0j] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
}

.navbar-brand:hover[b-aqqvz3bm0j] {
    color: white;
}

.brand-icon[b-aqqvz3bm0j] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 1.15rem;
}

.brand-text[b-aqqvz3bm0j] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.1;
}

.brand-title[b-aqqvz3bm0j] {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.brand-subtitle[b-aqqvz3bm0j] {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.04rem;
}


/* =========================================================
   ÍCONES
========================================================= */

.bi[b-aqqvz3bm0j] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.bi-search[b-aqqvz3bm0j] {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
}

.bi-clock-history[b-aqqvz3bm0j] {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8.515 1.019A7 7 0 1 1 1 8.5V7h1v1.5a6 6 0 1 0 1.17-3.564l.658.753A5 5 0 1 1 3 8.5H2a6 6 0 1 0 6.515-6.481z'/%3E%3Cpath d='M8 4.5a.5.5 0 0 1 .5.5v3.25l2.25 1.5a.5.5 0 0 1-.5.866l-2.5-1.667A.5.5 0 0 1 7.5 8.5V5A.5.5 0 0 1 8 4.5z'/%3E%3Cpath d='M2.5 1v3.5H6v1H1.5V1h1z'/%3E%3C/svg%3E");
}

.bi-bell-fill[b-aqqvz3bm0j] {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 16a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2zm.995-14.901a1 1 0 1 0-1.99 0A5.002 5.002 0 0 0 3 6c0 1.098-.5 6-2 7h14c-1.5-1-2-5.902-2-7 0-2.42-1.72-4.44-4.005-4.901z'/%3E%3C/svg%3E");
}

.bi-cash-coin[b-aqqvz3bm0j] {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11 15a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm5-4a5 5 0 1 1-10 0 5 5 0 0 1 10 0z'/%3E%3Cpath d='M9.438 11.944c.047.596.518 1.06 1.363 1.116v.44h.375v-.443c.875-.061 1.386-.529 1.386-1.207 0-.618-.39-.936-1.09-1.1l-.296-.07v-1.2c.376.043.614.248.671.532h.658c-.047-.575-.54-1.024-1.329-1.073V8.5h-.375v.45c-.747.073-1.255.522-1.255 1.158 0 .562.378.92 1.007 1.066l.248.061v1.272c-.384-.058-.639-.27-.696-.563h-.667zm1.36-1.354c-.369-.085-.569-.26-.569-.522 0-.294.216-.514.572-.578v1.1h-.003zm.432.746c.449.104.655.272.655.569 0 .339-.257.571-.709.614v-1.195l.054.012z'/%3E%3Cpath d='M1 2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h4.083a6.05 6.05 0 0 1 0-2H3a2 2 0 0 0-2-2V6a2 2 0 0 0 2-2h10a2 2 0 0 0 2 2v.528c.38.34.717.728 1 1.154V3a1 1 0 0 0-1-1H1z'/%3E%3Cpath d='M9.998 5.083A6.04 6.04 0 0 0 8 5.75a2.5 2.5 0 1 0-3 3.92 6.04 6.04 0 0 1 .445-1.802A1.5 1.5 0 1 1 9.998 5.083z'/%3E%3C/svg%3E");
}

.bi-gear-fill[b-aqqvz3bm0j] {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.858 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E");
}


/* =========================================================
   ESTRUTURA DO MENU
========================================================= */

.flight-menu[b-aqqvz3bm0j] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 3.5rem);
    padding: 0.75rem 0.7rem 1rem 0.7rem;
}

.menu-section-title[b-aqqvz3bm0j] {
    padding: 0.7rem 0.75rem 0.4rem 0.75rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.085rem;
}

.menu-section-spacing[b-aqqvz3bm0j] {
    margin-top: 0.8rem;
}

.nav-item[b-aqqvz3bm0j] {
    margin-bottom: 0.22rem;
    font-size: 0.9rem;
    min-width: 0;
}

.nav-item[b-aqqvz3bm0j]  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0.65rem 0.75rem;
    border: none;
    border-radius: 8px;
    background: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    line-height: normal;
    text-decoration: none;
    overflow: hidden;
    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.nav-item[b-aqqvz3bm0j]  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.09);
    color: white;
    transform: translateX(2px);
}

.nav-item[b-aqqvz3bm0j]  a.active {
    background-color: rgba(255, 255, 255, 0.17);
    color: white;
    font-weight: 600;
    box-shadow:
        inset 3px 0 0 #55b8ff;
}

.menu-icon[b-aqqvz3bm0j] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    min-width: 27px;
    flex: 0 0 27px;
    margin-right: 0.45rem;
}

.menu-text[b-aqqvz3bm0j] {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.opportunity-badge[b-aqqvz3bm0j] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 24px;
    margin-left: 0.5rem;
    padding: 0.3rem 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    white-space: nowrap;
}


/* =========================================================
   MENU RESPONSIVO
========================================================= */

.nav-scrollable[b-aqqvz3bm0j] {
    display: none;
    scrollbar-width: thin;
    scrollbar-color:
        rgba(255, 255, 255, 0.28)
        transparent;
}

.nav-scrollable[b-aqqvz3bm0j]::-webkit-scrollbar {
    width: 6px;
}

.nav-scrollable[b-aqqvz3bm0j]::-webkit-scrollbar-track {
    background: transparent;
}

.nav-scrollable[b-aqqvz3bm0j]::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.nav-scrollable[b-aqqvz3bm0j]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.42);
}

.navbar-toggler:checked ~ .nav-scrollable[b-aqqvz3bm0j] {
    display: block;
}

@media (max-width: 640.98px) {

    .flight-menu[b-aqqvz3bm0j] {
        min-height: auto;
    }

}

@media (min-width: 641px) {

    .navbar-toggler[b-aqqvz3bm0j] {
        display: none;
    }

    .nav-scrollable[b-aqqvz3bm0j] {
        display: block;
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-abdz6pe74k],
.components-reconnect-repeated-attempt-visible[b-abdz6pe74k],
.components-reconnect-failed-visible[b-abdz6pe74k],
.components-pause-visible[b-abdz6pe74k],
.components-resume-failed-visible[b-abdz6pe74k],
.components-rejoining-animation[b-abdz6pe74k] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-abdz6pe74k],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-abdz6pe74k],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-abdz6pe74k],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-abdz6pe74k],
#components-reconnect-modal.components-reconnect-retrying[b-abdz6pe74k],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-abdz6pe74k],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-abdz6pe74k],
#components-reconnect-modal.components-reconnect-failed[b-abdz6pe74k],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-abdz6pe74k] {
    display: block;
}


#components-reconnect-modal[b-abdz6pe74k] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-abdz6pe74k 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-abdz6pe74k 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-abdz6pe74k 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-abdz6pe74k]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-abdz6pe74k 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-abdz6pe74k {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-abdz6pe74k {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-abdz6pe74k {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-abdz6pe74k] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-abdz6pe74k] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-abdz6pe74k] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-abdz6pe74k] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-abdz6pe74k] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-abdz6pe74k] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-abdz6pe74k] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-abdz6pe74k 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-abdz6pe74k] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-abdz6pe74k {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
