/**
Author: Eleonora Montesanti 
eleonora.montesanti@ideaas.it 
28.06.2021
**/

.ideaas_table > thead {
	background-color: #0d8ccf;
	color: white;
}

.ideaas_table ul {
	padding: 1px;
}

.ideaas_table {
  border-collapse: collapse;
  width: auto;
}

.ideaas_table td, .ideaas_table th {
  border: 1px solid #ddd;
  padding: 8px;
}

.ideaas_table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  color: white;
}

/* Colori differenti per righe pari o dispari */ 
.ideaas_table tr:nth-child(odd) td{
    background:rgba(245, 245, 245, 1);
}
.ideaas_table tr:nth-child(even) td{
    background:rgba(233, 233, 233, 1);
}