body {
    background-color: #3c3c3c;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.play-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
}

#play_btn {
    background-color: yellow;
    width: 200px;
    height: 200px;
}

.lb-table-container {
    width: 100%;
    max-width: 100dvw;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: scroll;
}
table {
    width: 100%;
    border-collapse: collapse;
}
thead {
    position: sticky;
    top: 0;
}
th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.scrollable {
    max-height: 300px;
    overflow-y: auto;
}

.game-link{
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.game-link a{
    width: 200px;
    text-decoration: none;
    background-color: gold;
    color: black;
    padding: 8px;
    border-radius: 8px;
}