#search-container {
    padding-right: 75px;
}

#search-input {
    padding: 10px 16px;
    border: 2px solid black;
    border-radius: 25px;
    outline: none;
    background-color: inherit;
    transition: all 0.3s ease;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: none;
    width: 175px;
}

#search-input:focus {
    border: 2px solid transparent;
    background-image:
        linear-gradient(inherit, inherit),
        linear-gradient(90deg, #2b9df1, #50c7da);
    background-clip: padding-box, border-box;
    box-shadow: 0 0 8px rgba(43, 157, 241, 0.4);
    width: 200px;

}

#player-list-header {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-around;
    margin-bottom: -75px;
    margin-left: auto;
    margin-right: auto;
    width: 92%;
}

.sort-button {
    align-items: center;
    border: none;
    color: grey;
    cursor: pointer;
    display: flex;
    font-weight: bold;
    justify-content: space-around;
    min-width: 150px;
}

#div-player-cards {
    display: flex;
    gap: 10px;
    flex-direction: column;
    height: 50vh;
    overflow-y: scroll;
    margin-left: auto;
    margin-right: auto;
    width: 92%;
}

.player-card {
    align-items: center;
    background-color: white;
    border: 3px solid transparent;
    box-shadow: rgba(18, 18, 18, .1) 0 6px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    min-height: 75px;
    transition: border 0.3s ease-in-out, box-shadow .2s;
    max-width: 100%;
}

.player-card p {
    min-width: 150px;
}

.player-card:hover {
    border-image: linear-gradient(45deg, #50c7da, #2b9df1) 1;
    box-shadow: none;
}

#p-player-name {
    font-weight: 700;
}

#div-no-players-found {
    margin-left: auto;
    margin-right: auto;
    padding: 25px;
}