#settings {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 0%;
}

#menuItems {
    background-color: #1D2D44;
    padding: 5px;
    width: 15vw;
    color: white;
    height: 100vh;
    margin-top: -30px;
    margin-right: -100%;
}

#menuItems ul {
    list-style: none;
    padding: 0;
}

#menuItems ul li {
    padding: 10px;
    background-color: #5f5f5f;
    opacity: 0.5;
    width: 13.5vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 300ms ease;
}

#menuItems ul li:hover {
    opacity: 1;
    transform: scale(1.05);
}

#menuTitle {
    margin-top: -5px;
    width: 15.5vw !important;
    margin-left: -5px !important;
    border-radius: 0 !important;
    background-color: #78d693 !important;
    opacity: 1 !important;
    font-weight: bold;
    color: #1D2D44;
    cursor: unset !important;
}

#menuTitle:hover {
    transform: unset !important;
}

#menu {
    background-color: #58A4B0;
    height: 100vh;
    margin-top: -30px;
    width: 85vw;
    overflow-y: scroll !important;
    overflow-x: hidden;
}

#contentTitle {
    text-align: center;
    font-size: 40px;
    margin-top: 25px;
}

#content {
    display: grid;
    grid-template-columns: auto;
    margin-top: 40px;
}

.menuRow {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    border: 2px solid #78d693;
    border-width: 2px 0px 2px 0px;
    width: 100%;
    text-align: center;
}

.selectInput, .imgInput {
    margin-bottom: 10px;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.imgInput p {
    color: white;
}

.selectInput select, .imgInput input {
    font-weight: bold;
    color: #1D2D44;
}

.selectInput select option {
    color: #78d693;
}

.options.selected {
    background-color: #78d693 !important;
    opacity: 1 !important;
    font-weight: bold !important;
}

#saveBtn {
    color: white;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

#saveNav {
    transform: translateY(100%);
    transition: all 300ms ease;
    display: none;
}

@media (max-width: 911px) {
    #settings {
        grid-template-columns: auto;
        row-gap: 20px;
    }

    #menu,
    #menuItems {
        width: 100%;
    }

    #menuItems ul li {
        width: 100%;
        opacity: 1;
        background-color: #5f5f5f80;
        color: #ffffff80;
    }

    #menuItems ul li:hover {
        transform: unset;
    }

    #menuTitle {
        width: 105vw !important;
        margin-left: -20px !important;
        color: #1D2D44 !important;
    }

    .options.selected {
        color: white !important;
    }

    #menu {
        width: 102vw;
    }

    #pfpContainer {
        margin-left: 64vw !important;
        margin-top: 26vh !important;
        margin-bottom: calc(-26vh - 40px) !important;
    }

    #menuItems {
        max-height: 26vh;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    #menuItems ul li:hover {
        opacity: 0.5;
    }
}