/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin-top: 20px;
}

th, td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f4f4f4;
  font-weight: bold;
}

/* Row hover effect */
tr:hover {
  background-color: #f9f9f9;
}

/* Result color coding */
.result-win {
  color: #0f9d58; /* green */
  font-weight: bold;
}

.result-loss {
  color: #d93025; /* red */
  font-weight: bold;
}

.result-pending {
  color: #fbbc05; /* yellow */
  font-weight: bold;
}
