.log-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 40px;
}

.log-container h1 {
    color: var(--main);
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 25px;
}

.log-table {
    width: 90%;
    height: 100%;
}

.tableHeader {
    text-align: center;
    color: var(--dark);
    background-color: var(--main);
    padding: 10px;
  }

.tableInfo {
    text-align: center;
    border: 1px solid var(--main);
    color: var(--light);
    padding: 10px;
}

.tableTeamName {
    font-weight: bold;
    letter-spacing: 0.9px;
}

table tr:nth-child(even) {
    background: var(--dark);
  }
  




