#app-container {
    min-height: 100vh; /* Garante altura total da tela */
    display: flex;
    flex-direction: column;
    background-color: var(--background-color-secondary); /* Azul claro */
}

#page-content {
    flex: 1;
    padding: 3rem;
    background-color: var(--background-color-secondary); /* Azul claro */
}

/* ============================= */
/* Layout Padrão */
/* ============================= */
body,
.home-layout {
    background-color: var(--background-color) !important;
    color: var(--text-color) !important;
    
}


/* ============================= */
/* Cabeçalho (Header) */
/* ============================= */
.header-section {
    background-color: var(--header-background) !important;
    color: var(--dropdown-text-color) !important;
    padding: 3rem 5rem;
    margin: 0;
    display: flex;
    align-items: center;
    /*gap: 5rem;*/
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
}

.header-logo {
    font-size: 6em;
    font-weight: bold;
    color: var(--header-text-color) !important;
    text-decoration: none;
    margin-right: 5rem;
}

/* ============================= */
/* Links de Navegação */
/* ============================= */
.nav-links {
    display: flex;
    gap: 3rem;
    margin-left: 5rem;
    flex-grow: 1;
}

.nav-link {
    color: var(--header-text-color) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 4em;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #d1e9f0 !important;
}

/* ============================= */
/* Dropdown Geral */
/* ============================= */
.theme-dropdown .Select__control {
    background-color: var(--header-background) !important;
    color: var(--dropdown-text-color) !important;
    border: 1px solid #d1d9e0;
    box-shadow: none !important;
    border-radius: 1rem;
}

.theme-dropdown .Select__menu {
    background-color: var(--background-color-secondary) !important;
    color: var(--dropdown-text-color) !important;
}

.theme-dropdown .Select__option {
    background-color: var(--background-color-secondary) !important;
    color: var(--dropdown-text-color) !important;
    min-height: 7rem !important;
}

.theme-dropdown .Select__option--is-focused {
    background-color: #d1d9e0 !important;
}

.theme-dropdown .Select__option--is-selected {
    background-color: var(--button-background) !important;
    color: #ffffff !important;
}

.button-container {
    display: inline-block;
    margin: 0 1rem;  /* Espaçamento entre os botões */
}

.auth-link {
    display: inline-block;
    padding: 3rem 5rem;
    border-radius: 1rem;
    font-weight: bold;
    font-size: 4rem;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #4a90e2; /* Cor padrão de fundo */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1); /* Sombra leve */
}

.button-sign-up:hover {
    background-color: #45a482;
    transform: translateY(-1rem);
}

.sign-in-container .auth-link {
    background-color: #4a90e2; /* Azul padrão para Sign In */
}

.sign-up-container .auth-link {
    background-color: #56c6a9; /* Verde padrão para Sign Up */
}

/* Efeito de hover */
.sign-in-container .auth-link:hover {
    background-color: #357ab8; /* Azul mais escuro no hover */
    transform: translateY(-1rem); /* Leve elevação */
}

.sign-up-container .auth-link:hover {
    background-color: #45a482; /* Verde mais escuro no hover */
    transform: translateY(-1rem);
}

.profile-icon-container {
    position: relative;
    display: inline-block;
}

.profile-icon {
    font-size: 7rem;
    color: #ffffff;
    cursor: pointer;
}

.profile-name {
    font-size: 7rem;
    color: #ffffff;
}

.profile-dropdown {
    display: none;
    position: absolute;
    z-index: 9999;
    right: 0;
    background-color: #ffffff;
    min-width: 20rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-radius: 1rem;
}

.profile-dropdown a {
    z-index: 9999;
    color: #333;
    padding: 2rem 4rem;
    text-decoration: none;
    font-size: 4rem;
    display: block;
}

.profile-dropdown a:hover {
    background-color: #f0f4f8;
}

.profile-icon-container:hover .profile-dropdown {
    display: block;
}

#btn-continue-session, #btn-logout-session {
    font-size: 4rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 500;
    margin: 2rem 1rem;
}