.banner-content{
    text-align: center;
    left: 50%;
    top: 70%;
    bottom: 0%;
    transform: translate(-50%,-50%);
}

#top-players-section {
    margin-top: 50px;
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#top-players-section .top-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#top-players-section .top-content  h3 {
    font-family: var(--poppins);
    font-size: 1.5em;
    color: var(--redColor);
}

 #top-players-section .top-content  h1 {
    font-family: var(--amsterdam);
    font-size: 3em;
    color: var(--blueColor);
}

 #top-players-section .top-content  .searching-section{
    display: flex;
    flex-direction: column;
    gap: 5px;

}
#top-players-section .top-content  .searching-section label{
    font-size: 1.5em;
    font-family: var(--amsterdam);
    font-weight: 600;
    color: var(--redColor);
    background-color: #bdbaba;
    padding: 5px;
    /* border-radius: 5px; */
}
 #top-players-section .top-content  .searching-section select{
    padding: 5px;
    font-size: 1.1em;
    border: 1px solid #e7e6e6;
}

#top-players-section .top-content  .searching-section select:focus{
    outline: none;
}

#top-players-section .table-controls{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#top-players-section .table-controls input{
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    font-family: var(--poppins);
    border-radius: 5px;
}
#top-players-section .table-controls input:focus{
    outline: none;
}

#top-players-section table {
    width: 100%;
    border: 1px solid #7c7b7b;
    border-collapse: collapse;
}

#top-players-section table,
#top-players-section th,
#top-players-section td {
    border: 1px solid #ddd;
}

#top-players-section th,
#top-players-section td {
    padding: 12px;
    text-align: left;
}

#top-players-section td {
    font-family: var(--poppins);
    font-weight: 600;
    color: #686767;
}

#top-players-section .player {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--poppins);
    font-size: 1.2em;
    font-weight: 600;
    color: var(--blueColor);
}

#top-players-section th {
    background-color: #f2f2f2;
    font-family: var(--amsterdam);
    font-size: 1.5em;
    color: var(--redColor);
}

#top-players-section img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

#top-players-section .table-container {
    width: 100%;
    overflow-x: auto;
}

#top-players-section #top-players-table {
    width: 100%;
    margin: 20px 0;
}

#top-players-section #top-players-table th,
#top-players-section #top-players-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    white-space: nowrap;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {

    #top-players-section #top-players-table th,
    #top-players-section #top-players-table td {
        padding: 8px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    #top-players-section #top-players-table th,
    #top-players-section #top-players-table td {
        padding: 6px;
        font-size: 12px;
    }
}