/*O LaudoImagem carrega o bootstrap, que aplica border-box a tudo; os componentes da LaudoImagem.RazorLib
  (X_PaiAKAppVersao) e o login copiado contam com isso: sem ele, largura 100% soma o padding e desalinha.*/
*, *::before, *::after {
    box-sizing: border-box;
}

/*Fontes usadas pelo LaudoImagem (logo e ícones MingCute)*/
@font-face {
    font-family: 'Mixage';
    src: url('../fonts/Mixage ITC Std Black.otf') format('opentype');
}

@font-face {
    font-family: 'MingCute';
    src: url('../fonts/MingCute.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

html, body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    margin: 0;
    height: 100%;
}

.sombra {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/*foto redonda (Iniciais_Ou_Foto)*/
.profile-picture {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .profile-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/*layout principal: menu lateral + conteúdo*/
.suporte-page {
    display: flex;
    flex-direction: row;
    height: 100dvh;
    overflow: hidden;
}

.suporte-menu {
    display: flex;
    flex-direction: column;
    width: 170px;
    min-width: 170px;
    background-color: #f3f4f6;
    border-right: 1px solid #d1d5db;
    padding: 10px 0;
    gap: 4px;
    /*janela baixa: rola em vez de cortar o pé do menu (status do listener e Sair)*/
    overflow-y: auto;
}

.suporte-menu-status {
    font-size: 10px;
    color: #6b7280;
    overflow-wrap: anywhere;
}

.suporte-menu-usuario {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 10px 10px 10px;
    border-bottom: 1px solid #d1d5db;
    margin-bottom: 6px;
}

.suporte-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: #1f2937;
    text-decoration: none;
    cursor: pointer;
}

    .suporte-menu-item:hover {
        background-color: #e5e7eb;
    }

    .suporte-menu-item.active {
        background-color: dodgerblue;
        color: white;
    }

    .suporte-menu-item .icone {
        font-family: MingCute;
        font-size: 20px;
    }

.suporte-conteudo {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    overflow: auto;
    padding: 12px;
}
