body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
  text-align: center;
}

.cabecalho {
  background: #6a5acd;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#relogio {
  font-size: 18px;
  font-weight: bold;
}

button {
  padding: 8px 15px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: #f146cc;
  color: white;
  font-weight: bold;


&:hover {
    background: #7c0950;
}
}

table {
  margin: 20px auto;
  border-collapse: collapse;
  width: 95%;
  background: white;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
}

.pendente {
  background: #fc7575; 
}

.concluida {
  background: #a2f1a2; 
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.conteudo-modal {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filtros {
  margin: 15px;
}
