html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: sans-serif;
  font-size: 12px;
  padding: 1rem;
  background: url('background2.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  background: #4249f3;
  color: white;
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  line-height: 1.4; /* or try 1.5 for perfect vertical balance */
  margin-bottom: 0.5rem;
}



table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF00;
}

th, td {
  padding: 0.5rem;
  border: 1px solid #ccc;
}

tr:nth-child(even) {
  background: #f0f0f0;
}

.sub-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  background-color: transparent;
}

.sub-table tr td:not(.spacer-column) {
  background-color: white;
}

.sub-table thead th:not(.spacer-column) {
  background-color: white;
}

.sub-table th,
.sub-table td {
  padding: 2px 4px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

/* Generic cell border (except spacer) */
.sub-table td:not(.spacer-column),
.sub-table th:not(.spacer-column) {
  border: 1px solid #ccc;
}

.sub-table tr:nth-child(even) td:not(.spacer-column) {
  background: #f0f0f0;
}

.sub-table {
  table-layout: auto;
  width: auto;
}

/* Spacer column styling */
.spacer-column {
  background: none !important;
  background-color: transparent !important;
  color: transparent !important;
  width: 48px;
  min-width: 8px;
  border: none !important;
  padding: 0 !important;
}

.sub-table tr:nth-child(even) td.spacer-column {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.sub-table tr:nth-child(even) {
  background-color: inherit;
}

.sub-table tr:nth-child(even) td:not(.spacer-column) {
  background-color: #f0f0f0;
}

.sub-table td.spacer-column {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: transparent !important;
}

/* GROUP 1: First 10 columns border */
/* Left border for first column */
.sub-table th:nth-child(1),
.sub-table td:nth-child(1) {
  border-left: 2px solid #4249f3 !important;
}

/* Right border for 10th column */
.sub-table th:nth-child(10),
.sub-table td:nth-child(10) {
  border-right: 2px solid #4249f3 !important;
}

/* Top border for first row header cells (columns 1-10) */
.sub-table thead th:nth-child(-n+10) {
  border-top: 2px solid #4249f3 !important;
}

/* Bottom border for last row cells (columns 1-10) */
.sub-table tbody tr:last-child td:nth-child(-n+10) {
  border-bottom: 2px solid #4249f3 !important;
}

/* GROUP 2: Last 4 columns border (columns 12, 13, 14, 15) */
/* Left border for 12th column */
.sub-table th:nth-child(12),
.sub-table td:nth-child(12) {
  border-left: 2px solid #4249f3 !important;
}
/* Right border for 15th column */
.sub-table th:nth-child(15),
.sub-table td:nth-child(15) {
  border-right: 2px solid #4249f3 !important;
}
/* Top border for first row header cells (columns 12-15) */
.sub-table thead th:nth-child(n+12):nth-child(-n+15) {
  border-top: 2px solid #4249f3 !important;
}
/* Bottom border for last row cells (columns 12-15) */
.sub-table tbody tr:last-child td:nth-child(n+12):nth-child(-n+15) {
  border-bottom: 2px solid #4249f3 !important;
}

/* For the logo */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
  margin-left: 1rem;
}

.logo-container {
  position: absolute;
  top: 1rem;
  right: 3rem;
  z-index: 10;
}

.logo-container img {
  height: 100px;
  object-fit: contain;
}
