/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
body {
  font-family: Arial, sans-serif;
  background: #ffffffdb;
  margin: 0;
  padding: 100px;
}

div {
    padding: 50px;
    background:rgb(244, 245, 255);
}
p {
    padding: 50px;
    background:rgb(244, 245, 255);
}

th {
    text-align: left;
    background:rgb(187, 192, 250);
    font-size: 1.3em;
    padding: 10px;
}

td {
    background:rgb(244, 245, 255);
    padding: 15px;
}

.header_link a{
    text-decoration: none;
    color: rgb(64, 68, 108);
}

.highlight.desc {
    background: rgb(226, 217, 237);
}

.highlight.asc {
    background: rgb(232, 230, 255);
}

th.sorted.asc::after {
    content: '\25B2';
}
 
th.sorted.desc::after {
    content: '\25BC';
}
 