body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1f1f1f;
    color: #e0e0e0;
}
a {
    text-decoration: none;
    color: #ffaa33; /* Bright amber for visibility */
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}
.heading-container {
    position: relative;
    width: 100%;
    height: 100px; /* Set the desired height */
    background-image: url('https://rankme.the-testers.com/images/csspic.png'); /* Image URL */
    background-size: cover; /* Ensures the image covers the container */
    background-position: center; /* Centers the image */
    overflow: hidden; /* Crops the image */
  }
  
  .heading-container h1 {
    position: absolute;
    top: 50%; /* Adjust this value to position it vertically */
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* You can change the color based on your image */
    font-size: 3em; /* Adjust the font size */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional: adds shadow for better visibility */
  }
a:hover {
    text-decoration: underline;
    color: #cc8800; /* Slightly darker amber for hover effect */
}
h1 {
    text-align: center;
    margin: 20px 0;
    color: #e0e0e0;
}

.server-info, .top-player {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 8px;
    box-shadow: 5px 5px 10px #0d0d0d, 
                -5px -5px 10px #353535;
    border: 3px solid #2d2d2d;
}

.server-info summary {
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(145deg, #444, #222);
    color: #e0e0e0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px #0d0d0d, 
                -2px -2px 5px #353535;
    transition: background 0.3s ease-in-out;
}

.server-info summary:hover {
    background: linear-gradient(145deg, #555, #333);
}

.server-details {
    margin-top: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #444;
}

table th {
    background: linear-gradient(145deg, #444, #222);
    color: #e0e0e0;
    box-shadow: inset 0 -2px 5px #0d0d0d;
}

table tr:hover {
    background-color: #333;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #2d2d2d;
    box-shadow: 0 2px 5px #0d0d0d;
}

.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination a {
    margin: 0 5px;
    text-decoration: none;
    color: #ffaa33; /* Bright amber for visibility */
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.pagination a:hover {
    text-decoration: underline;
    color: #cc8800; /* Slightly darker amber for hover effect */
}

.pagination select {
    margin: 0 10px;
    background-color: #2d2d2d;
    color: #e0e0e0;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 5px;
}

.top-player h1 {
    text-align: center;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.top-player table {
    margin: 20px 0;
    width: 100%;
}

.top-player td {
    text-align: center;
    padding: 10px;
    vertical-align: middle;
}

.top-player img {
    border-radius: 50%;
    border: 3px solid #2d2d2d;
    box-shadow: 0 2px 5px #0d0d0d;
    width: 80px;
    height: 80px;
}

@media (max-width: 768px) {
    .server-info, .top-player {
        padding: 15px;
    }

    table th, table td {
        font-size: 14px;
    }
}

form {
    margin: 20px 0;
}

form input[type="text"] {
    padding: 8px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2d2d2d;
    color: #e0e0e0;
}

form button {
    padding: 8px 12px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    background-color: #1e90ff;
    color: #e0e0e0;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #0078d7;
}

form label {
    font-weight: bold;
    margin-right: 10px;
    color: #e0e0e0;
}
