.CreatedPage {
    display: none;
    position: absolute;
    z-index: 99;
    color: #98c1d9;
    width: 100%;
    height: 100%;

    gap: 10px;
    grid-template-rows: 100px auto;
    background-color: #3E79D5;
}


.CreatedTopBar {
    grid-row: 1;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 25px;
    /* row-gap: 30px; */
    width: calc(100% - 50px);
    background-color: #4872C4;
    border-radius: 0 0 40px 40px;
}

.CreatedMidBar {
    grid-row: 2;
    display: grid;
    align-content: start;
    /* background-color: #28303f; */
    row-gap: 30px;
    height: 100%;
    grid-template-rows: 1fr auto;

}



.CreatedServer {
    display: grid;
    grid-template-rows: repeat(auto-fill, auto);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    gap: 20px;

}


.CreatedServerName {
    grid-row: 1;
    display: grid;
    grid-template-rows: auto auto;
    gap: 10px;
    width: 100%;

    label {
        text-align: center;
        color: #88B2FF;
    }

    label:nth-child(2),
    label:nth-child(4) {
        text-align: center;
        color: ghostwhite;
        font-size: 20px;
    }

    label:nth-child(4) {
        color: ghostwhite;
    }
}


.CreatedCurrentPlayers {
    display: grid;
    grid-template-columns: repeat(auto-fill, auto);
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 10px;
    width: 287px;
    margin: auto;


    > :nth-child(1) {

        line-height: 30px;
        text-align: center;
        grid-row: 1;
        grid-column: 1/3;

    }

    > :nth-child(6) {

        text-align: center;
        line-height: 30px;
        grid-row: 4;
        grid-column: 1/3;


    }

    label {

        width: 100%;
        line-height: 30px;
        text-wrap: nowrap;
        overflow: hidden;
        text-align: center;
        grid-column: 1/3;
        text-overflow: ellipsis;

    }
}

.CreatedCurrentPlayerFullRow,
.CreatedCurrentPlayer {

    display: flex;
    align-items: start;
    justify-content: start;
    gap: 5px;
    font-size: 18px;
    color: ghostwhite;
    color: ghostwhite;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    input {

        cursor: pointer;
        margin: auto 0;
        width: 25px;
        height: 25px;
        margin-left: 5px;
    }

    label {

        color: ghostwhite;


    }

    input[type='radio']:after {

        width: calc(25px - 4px);
        height: calc(25px - 4px);
        border-radius: 15px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: relative;
        background-color: #88B2FF;

        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;

    }

}

.CreatedCurrentPlayerFullRow {
    margin: auto;
    grid-column: 1/3;
}

.CreatedCurrentPlayerConnected {

    input[type='radio']:after {
        width: calc(25px - 4px);
        height: calc(25px - 4px);
        border-radius: 15px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: relative;
        background-color: #F68525;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }

}

.DeleteGame {
    margin: auto;
    cursor: pointer;
    width: 287px;
    background-color: #F68525;
    color: ghostwhite;
    font-weight: 600;
    font-size: 1.2rem;
    min-height: 3rem;
    line-height: 3rem;
    border-radius: 25px;
    border: 0;
    transition: background-color 0.3s ease-in-out;
}

.DeleteGame:hover {
    background-color: #c76a19;
}