:root {
    --primary-color: #1a4675;
    --secondary-color: #808285a8;
    --background-gradient: linear-gradient(to right, #d6d6d6, #e6e6e6);
    --success-color: #28a745;
    --progress-color: #ff9c07;
    --completed-color: #007bff;
    --critical-color: #ff8944;
    --danger-color: #ff4444;
}
body {
    background: linear-gradient(to right, #d6d6d6, #e6e6e6);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
h1, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: aparecer 0.5s ease-in-out; /* Animação */
}
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;
}

.titleTarefasArquivadas {
    font-size: 1.8em;
    color: #1a4675;
}
.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;
}
#userName {
    font-size: 20px;
    color: #1f3565;
    margin-right: 10px;
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
#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;
}
/* Contêiner Principal */
.container-arquivadas {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
    margin-bottom: 20px;
}
/* Card */
.card-arquivada {
    display: flex; /* Layout horizontal */
    align-items: center;
    justify-content: space-between; /* Mantém os elementos separados */
    gap: 20px; /* Espaço entre avatar e conteúdo */
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background-color 0.3s;
    position: relative; /* Garante que os botões possam ser alinhados com precisão */
}

.card-arquivada:hover {
    transform: scale(1.02); /* Leve aumento no hover */
    background-color: #f4f4f9; /* Fundo mais claro no hover */
}

.card-content {
    flex: 1; /* Faz o conteúdo ocupar o restante do espaço */
    display: flex;
    flex-direction: column; /* Organiza as informações verticalmente */
    gap: 10px; /* Espaço entre as linhas de texto */
}

/* Conteúdo do Card */
.card-content h3 {
    font-size: 1.5em; /* Destaque maior para o nome */
    margin: 0 0 10px 0; /* Espaçamento inferior */
    color: #1f3565;
}

.card-content p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
    display: flex;
    gap: 5px; /* Espaço entre o título e o texto */
}

.card-content p strong {
    color: #007bff; /* Destaque nos títulos */
}

.card-content .line {
    display: flex;
    justify-content: space-between; /* Alinha elementos da linha horizontalmente */
    width: 100%;
    gap: 20px; /* Espaçamento horizontal entre as colunas */
}

/* Avatar */
.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px; /* Dá um espaço maior entre o avatar e o conteúdo */
}

/* Botões */
.card-actions {
    display: flex;
    gap: 15px; /* Espaço entre os botões */
    margin-top: 15px;
}

.card-actions .btn {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em; /* Tamanho de fonte confortável */
    transition: background-color 0.3s;
}

/* Botão Restaurar */
.btn-restaurar {
    background-color: #28a745; /* Verde */
    color: white;
}

.btn-restaurar:hover {
    background-color: #218838;
}

.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;
}

.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);
    }
}
.no-tasks {
    text-align: center;
    margin-top: 40px;
}

.no-tasks img.ilustracao {
    max-width: 300px;
    opacity: 0.8;
    margin-bottom: 40px;
}
.fade-out {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.3s, transform 0.3s;
}

.modal-alerta {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
.modal-conteudo {
  background: white;
  padding: 20px 30px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}
.modal-conteudo p {
  margin-bottom: 12px;
  font-weight: bold;
}




