* {
    color: black;
}

body {
    width: 100%;
    background-color: bisque;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.teams {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.lagA {
    background-color: royalblue;
}

.lagB {
    background-color: crimson;
}

.lagA, .lagB {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    padding: 8px;
}

#bytA, #bytB {
    height: 25px;
}

#playerAdd, .btnAdd {
    width: 200px;
    height: 25px;
}

ul {
    margin: 0;
    padding: 0;
    /* list-style: none; */
}

li {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    background-color: #ffffff7f;
    justify-content: end;
    padding: 5px;

}

button {
    margin: 5px;
}