.settingChaneInBG {
    background: transparent !important;
    display: none !important;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(0deg, #141414 15%, rgba(20, 20, 20, 0.7) 36%, rgba(20, 20, 20, 0.1) 78%);
}

.header-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 14rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4.5rem;
    box-sizing: border-box;
}

.main-view {
    display: flex;
    position: absolute;
    /* padding: 0 4.5rem; */
    margin-top: 14rem;
    width: 100%;
    height: calc(100vh - 14rem);
    overflow: hidden;
    box-sizing: border-box;
}


#header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu de navegação */
nav {
    /* gap não existe em WebKit antigo */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 2em;
    padding: 0.2rem 0.25rem;
    background: rgba(16, 31, 9, 0.3);
}

nav button {
    margin: 0 !important;
    font-size: 1.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    border-radius: 24px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 24px;
    border: 3px solid transparent;
    cursor: pointer;
    background: transparent !important;
    z-index: 10000;
}

nav button.navigationActive {
    transform: none;
}

nav button.active {
    background-color: transparent !important;
    color: rgba(221, 194, 135, 1) !important;
}

.messagePopUpBtn img {
    width: 25px;
    height: 25px;
}

.messagePopUpBtn.hidden {
    display: none;
}

.navigationActive {
    color: rgba(221, 194, 135, 1) !important;
    color: white !important;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
    border: 3px solid #DDC287;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #C39F51;
    transition: all 0.3s ease;
    /* transform: scaleX(1) !important;
    -webkit-transform: scaleX(2px, 1.04) !important;
    -moz-transform: scaleX(2px, 1.04) !important;
    -o-transform: scaleX(2px, 1.04) !important;
    -ms-transform: scaleX(2px, 1.04) !important; */

    /* transform: translateY(-4px); */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
}

.active {
    background-color: rgba(221, 194, 135, 1) !important;
}

/* Logs modal */
.logs-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    z-index: 9999;
}

.logs-modal.hidden {
    display: none;
}

.logs-modal-content {
    color: #fff;
    width: 50%;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    border: 1px solid #444;
    padding: 1rem;
    -webkit-box-shadow: 0 0 20px #000;
    box-shadow: 0 0 20px #000;
}

#debug_console {
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #ccc;
    overflow-y: scroll;
    flex: 1;
    margin: 10px 0;
    padding-right: 5px;
}