body {
    background-color: black;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    background-color: #0f0f0f;
    color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: #1a1a1a;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #aaaaaa;
}

th, td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #2a2a2a;
}

tr:hover {
    background-color: #1f1f1f;
}

tr:last-child td {
    border-bottom: none;
}

h6 {
    font-size: clamp(12px, 2.5vw, 21px);
    font-weight: 740;
    line-height: clamp(14px, 2.5vw, 24px);
    letter-spacing: -.4px;
    margin: 0;
    /* background: linear-gradient(90deg, #ff0080, #ff8c00); */
    text-align: center;
    padding: .5rem;
    border-radius: 4px;
    width: max-content;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.player-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

header {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

header div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

h1 {
    margin: 0;
}

a {
    background-color: #af4c91;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    background-color: #9b2c5c;
}

.two-pane {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

#left-pane {
    flex: 1 1 60%;
    min-width: 300px;
}

#right-pane {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 280px;
}

.two-pane section {
    width: 100%;
}

@media (max-width: 800px) {
    .two-pane {
        flex-direction: column;
    }
}

h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
}