
/* ============ Estilos para o Cabecalho (header) ============ */

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px 12px 15px;
    background: #f3f4f6;
    color: #000;
    border-bottom: 2px solid black;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 26px;
    margin: 0;
}

.menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.menu-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0; /* remove espaçamento vertical fantasma */
}


/* Notificações em vermelho acima dos ícones */

.notificacao-geral {
    position: absolute;
    
    top: 2px;
    right: 112px;
    
    min-width: 25px;
    padding: 10px 5px;
    border-radius: 50%;
    background-color: red;
    color: white;
    font-weight: normal;
    font-size: 13px;
    border:2px solid white;
    text-align:center;
    
    -webkit-box-shadow: -1px 2px 5px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    -1px 2px 5px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         -1px 2px 5px 0px rgba(50, 50, 50, 0.75);
}

.notificacao-suporte {
    position: absolute;
    
    top: 2px;
    right: 62px;
    
    min-width: 25px;
    padding: 10px 5px;
    border-radius: 50%;
    background-color: red;
    color: white;
    font-weight: normal;
    font-size: 13px;
    border:2px solid white;
    text-align:center;
    
    -webkit-box-shadow: -1px 2px 5px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    -1px 2px 5px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         -1px 2px 5px 0px rgba(50, 50, 50, 0.75);
}


/* Menu suspenso do PERFIL */

#menuDropdown{
    position: absolute;
    top: 50px;
    right: 10px;
    background: #ffffff;
    border: 1px solid #ccc;
    width: 220px;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-radius: 6px;
    overflow: hidden;
}

#menuDropdown.active{
    display: block;
}

#menuDropdown a{
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

#menuDropdown a:last-child{
    border-bottom: none;
}

#menuDropdown a:hover{
    background: #f5f5f5;
}

/* Item SAIR do menu */
#menuDropdown a.logout{
    color: #c0392b;
    font-weight: bold;
    border-top: 1px solid red;
}

#menuDropdown a.logout:hover{
    background: #fdecea;
}
