:root {
    --primary-color: #1a4675;
    --secondary-color: #808285a8;
    --background-gradient: linear-gradient(to right, #d6d6d6, #e6e6e6);
    --success-color: #007bff;
    --progress-color: #ff9c07;
    --completed-color: #28a745;
    --critical-color: #ff8944;
    --danger-color: #ff4444;
}
body {
    background: linear-gradient(to right, #d6d6d6, #e6e6e6);
    margin: 0;
}
h1, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: aparecer 0.5s ease-in-out; 
} 
h1 {
    color: #1a4675;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
h4 {
    color: #1a4675;
    border-bottom: 2px solid #1a4675;
    padding-bottom: 5px;
}
h5 {
    color:#808285a8;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 18px;
    padding-bottom: 5px;
}
label{
    color:#1a4675;
    font-size: 18px;
    font-weight: 800;
}
.header{
    background: #1a4675;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content:space-around;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.logo-multilab{
    width: 200px;
}
.logo-formlab{
    width:80px;
}
.title{
    color:#ffffff;
}
.tabela-tarefas {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-top-right-radius: 8px;
}
.descricao-tabela {
    max-width: 200px; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block; 
}
.card-info-grafico {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin: 10px;
    padding-left: 0;
    padding-right: 0;
}
.containerGannt {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    
}
.containerGannt div {
    flex-grow: 0 !important;
    width: auto !important;
}
.responsavel-tarefa-title {
    color: #fff;
    padding: 10px;
    text-align: center;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    background-color:#1a4675;
}
.tableTarefas {
    margin: 30px;
}
.detalhesTable {
    color: #fff;
    padding: 10px;
    font-size: 1.5em;
    text-align: center;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-bottom:none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: -10px;
}
.modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Certifica-se que está acima dos outros elementos */
}
.modal-content {
    background-color: rgb(247, 247, 247); /* Seguindo o padrão do modal-tarefa */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
    text-align: center;
    width: 80%;
    max-width: 500px; /* Largura máxima */
    text-align: center; /* Centraliza os textos horizontalmente */
    display: flex; /* Torna o conteúdo flexível */
    flex-direction: column; /* Alinha os elementos em coluna */
    justify-content: space-around; /* Centraliza verticalmente o texto */
    align-items: center; /* Centraliza horizontalmente o conteúdo */
    animation: aparecer 0.3s ease-in-out; /* Animação suave */
}
.modal-actions button {
    margin: 5px;
    padding: 10px 20px;
    cursor: pointer;
}
.notificacao {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4caf50; /* Verde para sucesso */
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-weight: bold;
    z-index: 1000; /* Para garantir que esteja acima de outros elementos */
    animation: fadeInOut 4s ease-in-out;
}
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Movimento suave para cima */
    }
    20% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}
.btn-confirmar {
    background-color: #28a745; 
    color: white;
}
.btn-confirmar:hover {
    background-color: #218838;
}
.btn-cancelar {
    background-color: #555555; 
    color: white;
}
.btn-cancelar:hover{
    background-color: #6e6e6e;
}
.user-info {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
#userName {
    font-size: 20px;
    color: #1f3565;
    margin-right: 10px;
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
}
#userEmail {
    color: #808080;
}
#userAvatar {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}
#btnSair{
    display: flex;
    align-items: center;
    padding: 5px 10px;
    margin: 10px;
    background-color: #1f3565;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
}
