body {
  font-family: "Roboto", sans-serif;
  padding: 0;
  margin: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00376b;
  color: white;
  padding: 10px 20px;
}

.content-wrapper {
  padding: 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px; /* Adjust the height as needed */
  margin-right: 10px;
}

.search {
  width: 300px; /* Adjust the width as needed */
}

/* Customize the table */
#data-table {
  font-size: 14px;
  background-color: #f5f5f5;
}

/* Customize table header */
#data-table th {
  background-color: #00376b;
  color: white;
}

/* Customize table cells */
#data-table td {
  border: 1px solid #ddd;
}

.running {
  color: #008c05;
  font-weight: 500;
}

.finished {
  color: #ca0000;
  font-weight: 500;
}

.priority-low {
  color: green;
}

.priority-medium {
  color: orange;
}

.priority-high {
  color: #ca0000;
}

.text-center {
  text-align: center;
}

.dataTables_filter {
  margin-top: -65px;
}

.dataTables_filter label {
  color: #ffffff;
}

.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: #fff;
  color: inherit;
  margin-left: 15px;
}

/* Aggiungi questo CSS al tuo foglio di stile */
#data-table td:nth-last-child(-n+4) {
  width: 100px; /* Imposta la larghezza desiderata in pixel */
  white-space: nowrap; /* Evita il testo che va a capo */
  overflow: hidden;
  text-overflow: ellipsis; /* Aggiunge un'ellissi per il testo troppo lungo */
}

