/* menu container */
.menu_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
/* end menu container */

/* menu button */
div.menu_button {
    display: grid;
    background-color: var(--elm);
    border: var(--ol) solid 3px;
    border-radius: .6rem;

    width: 20rem;
    margin: 0 1rem;

    overflow: hidden;
    transition: height .3s;
}

.character_button {
    position: relative;
    height: 2.5rem;
    margin-bottom: -2.5rem;
    z-index: 1;
}

p.menu_button {
    color: var(--text);
    font-size: var(--tlrg);

    height: 2.5rem;
    width: fit-content;
    padding-top: .35rem;
    margin: auto;
}
/* end menu button */

/* character input */
.input_container {
    display: flex;
    flex-direction: row;
    margin: 0px auto;
}

/* character text input */
.name_character {
    width: 12rem;
    height: 2rem;
    font-size: var(--tmed);
    color: var(--text);
    background-color: var(--elm);
    border: 3px solid var(--ol);
    border-radius: .5rem 0 0 .5rem;
    border-right: 0;
    padding: 0 .5rem;
    margin-bottom: .5rem;
}
/* end character text input */

/* confirm button */
svg.checkbox {
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--ol);
    border-radius: 0 .5rem .5rem 0;
}

path.checkbox {
    fill: transparent;
    stroke: var(--text);
}
/* end confirm button */
/* end character input */

/* delete button */
svg.delete_button {
    border-radius: .5rem;
    margin: .3rem;
    margin-left: auto;
}
/* end delete button */

/* delete text */
.delete_text {
    color: var(--text);
    font-size: var(--tmed);
    margin: 0;
    padding: 0 .5rem 0.5rem;
}
/* end delete text */

/* import/export styles */
.imexport_button {
    background-color: var(--elm);
    border: 3px solid var(--ol);
    border-radius: .4rem;

    height: fit-content;
    margin-bottom: .5rem;
    padding: .5rem;
    text-align: center;
}

.imexport_text {
    color: var(--text);
    font-size: var(--tmed);
    margin: 0;
}

.import_upload {
    font-family: unset;
    width: 6rem;
}
/* import/export styles */

/* small screen styles */
@media (min-height: 1280px) {
    .mobile_menu_container {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .menu_container {
        display: unset;
        width: unset;
    }

    div.menu_button {
        width: 24rem;
        margin: 2rem 0;
    }
    p.menu_button {
        margin: 0 auto 1rem;
    }

    .name_character {
        width: 17rem;
        height: 2.6rem;
        margin-bottom: 1rem;
    }

    .counter_select {
        width: 20rem;
        height: 3rem;
        margin: 0 auto 1rem;
    }

    .counter_name_input {
        width: 18.5rem;
        height: 2.6rem;
        margin: 0 auto 1rem;
    }

    .counter_num_input {
        width: 2.4rem;
        height: 2.6rem;
    }

    svg.checkbox {
        width: 2.6rem;
        height: 2.6rem;
    }

    .imexport_button {
        width: 8rem;
    }
}