body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1b2838;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    gap: 5px;
}

.logo img {
    width: 150px;
    height: auto;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #dcdedf;
    margin: 0;
}

.leaderboard-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.leaderboard-table {
    width: 26%;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(102, 192, 244, 0.5);
    overflow: hidden;
}

table {
    width: 40%;
    margin: 2px auto;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 0px 10px rgba(102, 192, 244, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    vertical-align: middle;
    text-align: center;
}

th {
    background-color: #171d25;
    color: #66c0f4;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

tr:nth-child(even) {
    background-color: #2a475e;
}

tr:hover {
    background-color: #3a637a;
}

.potw-container {
    background: #222;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 40%;
    margin: 20px auto;
}

.potw-container table {
    width: 80%;
    border-collapse: collapse;
}

.potw-container th, .potw-container td {
    padding: 10px;
    border-bottom: 1px solid #444;
    text-align: center;
}

.potw-container img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.potw-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}

.player-info {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    vertical-align: middle;
}

