* {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
}

.menu-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.menu-text {
    font-size: 12px;
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
}

table.table-sm td, table.table-sm th {
    padding: 0 !important;
}

#notification {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#notification.show {
    opacity: 1;
    transform: translateY(0);
}

@media print {
    /* Ocultar o menu no PDF */
    .menu, .navbar {
        display: none;
    }

    /* Garantir que o conteúdo do PDF comece abaixo do menu */
    .content-container {
        margin-top: 165px; /* Ajuste para o tamanho do menu */
    }
}

.modal-content {
    /* border: 2px solid #313A46; */
    box-shadow: 0px 4px 10px #313A46;
    /* border-radius: 10px; */
}

.th-nome {
    width: 35%;
    padding: 10px!important;
}

.th-id {
    width: 4%;
    padding: 10px !important;
}

.th-acoes{
    width: 10%;
    padding: 10px !important;
}

@media (max-width: 768px) {
    .th-nome {
        width: 80%;
    }
    .th-id {
        width: 10%;
    }
}

