/* CSS básico do sistema de documentos RH */

/* Garante que padding/border não quebrem o layout */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
}

/* Imagens e vídeos não estouram a largura no mobile */
img,
video {
    max-width: 100%;
    height: auto;
}

.navbar-brand {
    font-weight: 600;
}

.table td,
.table th {
    vertical-align: middle;
}
