   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: 20px;
            gap: 15px;
        }
        h1 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 32px;
            color: #dcdedf;
            margin: 0;
        }
        table {
            width: 80%;
            margin: 20px auto;
            border-collapse: collapse;
            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: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
        }
        th {
            background-color: #171d25;
            color: #66c0f4;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
        }
        th a {
            color: #66c0f4;
            text-decoration: none;
        }
        th a:hover {
            text-decoration: none;
        }
        tr:nth-child(even) {
            background-color: #2a475e;
        }
		td:nth-child(2) {
            align-items: center;
        }
        tr:hover {
            background-color: #3a637a;
        }
		input[type="text"] {
            width: 300px;
            padding: 10px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
        }
        button {
            padding: 10px 15px;
            border: none;
            background-color: #66c0f4;
            color: #1b2838;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
            margin-left: 10px;
        }
        button:hover {
            background-color: #417a9b;
        }
		.avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }
		.player-info {
            display: flex;
            align-items: center;
            justify-content: flex-start;
			flex-wrap: wrap; /* Allow text to wrap properly */
			text-align: left;
        }
        footer {
            margin-top: 20px;
            font-size: 14px;
        }
		.footer-logo img {
            width: 80px;
            height: auto;
        }