.players-select {
    position: absolute;
    top: 10%;
    left: 12.5%;
    width: 75%;
    height: 75%;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0px 0px 16px 10px rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.players-select h2 {
    font-family: "Sour Gummy", serif;
    color: #75050a;
    font-size: 60px;
    padding: 32px;
    margin: 0;
    text-align: center;
}

.players-select-players {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 32px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 80%;
}

.players-select-form {
    height: 80%;
    width: 100%;
}

.players-select-form ul {
    max-height: 60%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.players-select-buttons {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 24px;
    height: 20%;
}

.players-select-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.player-select-list-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    margin-top: 64px;
    width: 100%;
    list-style: none;
}

.player-select-list-empty-text {
    text-wrap: wrap;
    width: 50%;
}

.player-input-label {
    font-family: "Sour Gummy", serif;
    color: #000000;
    font-size: 1.5em;
    font-weight: 500;
    text-align: start;
    width: 100%;
}

.player-input {
    padding: 8px;
    border-radius: 8px;
    width: 100%;
    margin-top: 16px;
    height: 40px;
    font-size: 32px;
    text-transform: uppercase;
}

.players-select-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.players-select-item-order {
    font-family: "Sour Gummy", serif;
    color: #000000;
    font-size: 32px;
}

.players-select-item-name {
    font-family: "Sour Gummy", serif;
    color: #000000;
    font-size: 32px;
}

.players-select-item-remove {
    cursor: pointer;
}
