/* General Layout and Structure */
html,
body {
  height: 100%; /* Full height of the iframe content */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column; /* Makes the body take full height */
  justify-content: flex-start; /* Content should be at the top of the iframe */
}

.table-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

/* Text Styles */
th.heading {
  font-size: 14pt;
  height: 30px;
}

th.heading img {
  vertical-align: text-bottom;
}

.tiny-font {
  font-size: 10px;
}

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

/* Backgrounds and Colors */
.green-background {
  background-color: #00e0a0;
}

.finalists-background {
  background-color: #efefef;
}

.points-background {
  background-color: #dddddd;
}

/* Table Styles */
table {
  text-align: center;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #b2b2b2; /* Outer table border color */
}

td,
th {
  font-size: 10pt;
  border: 1px inset black;
}
