 .table__head {
  color: #fff;
  font-weight: 700;
  background: #b4c7c4;
  background: -moz-linear-gradient(-45deg, #b4c7c4 0%, #608590 100%);
  background: -webkit-linear-gradient(-45deg, #b4c7c4 0%, #608590 100%);
  background: linear-gradient(135deg, #b4c7c4 0%, #608590 100%);
  white-space: nowrap;
}
.table-bordered td,
.table-bordered th {
  border: 1px solid;
}
.coin {
  width: 8%;
  margin-left: 5px;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



@media screen and (max-width: 567px) {
  .winner__table {
    font-size: 12px;
  }
  .coin {
    width: 15%;
    margin-left: 2px;
  }
}
table {
            width: 100%;
            border-collapse: collapse; /* Ensures borders between cells are merged */
        }

        th, td {
            border: 1px solid black; /* Adds a black border to table cells */
            padding: 8px; /* Adds some space inside cells */
            text-align: left; /* Aligns text to the left */
        }

        th {
            background-color: #f2f2f2; /* Adds a background color to table headers */
            font-weight: bold; /* Makes table headers bold */
        }

        /* Optional: Adds border to the entire table */
        table {
            border: 2px solid #333; /* Darker border around the table */
        }

        a {
    color: #0a2297;
    text-decoration: none;
}