/*
 * This is a simple style sheet for the Engarde HTML overall ranking output.
 */

body {
  background-color: white;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
}

@media print
{
  body {
    font-family: "Times New Roman", serif;
    font-size: 11pt;
  }
}

h1 {
  font-size: 240%;
  text-align: center;
}

h2 {
  font-size: 140%;
  text-align: center;
}

/*
 * This is a general list table that can be used for all the output
 * apart from the poules and the tableaux
 */

table.liste {
  font-size: 100%;
  color: black;
  background-color: white;
  border-collapse: collapse;
  border: 2px solid black;

  /* Center the list */
  margin-left: auto;
  margin-right: auto;
}

/* Border color styles for data rows */
table.liste tr.gold {
  color: black;
  background-color: #f7f74c;
}
table.liste tr.silver {
  color: black;
  background-color: #c3c3c3;
}
table.liste tr.bronze {
  color: black;
  background-color: #b58231;
}
table.liste tr.other {
  color: black;
  background-color: #ffcccc;
}

/* This is the row for the header and footer */
table.liste th {
  color: #4682b4;
  background-color: #ffefd5;
  border: 1px solid #2f4f4f;
  padding: 2px 0.5em;
}

/* Border style for the table data cells */
table.liste td {
  border: 1px solid #2f4f4f;
  padding: 2px 0.5em;
}

