button {
    /* padding: 10px 10px; */
    font-size: 16px;
    cursor: pointer;
    height: 35px;

    /* display: inline-flex; */
    /* 가로 - 중앙으로 */
    align-items: center; 

    border-radius: 10px;
    border: gray 1px solid;
    box-shadow: 2px 2px 2px 2px lightgray;

    transition: all 0.1s ease-in-out;
    cursor: pointer;
}

/* 페이지 메뉴를 위한 중앙 버튼 세로정렬용 */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
    justify-content: center;
}

.button-container button {
    width: 60%;
    margin: 5px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* 글자 크기 조절 버튼 */
.button-container-fontsize {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    /* flex-direction: column; */
    flex-direction: row;
    gap: 5px;
}

.button-fontsize {
    width: 0.8cm;
    height: 0.8cm;
    background-color: pink;
    opacity: 0.5;
    border: none;
    border-radius: 5px;
    font-size: 26px;
}

.button-container-coralselect {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
    justify-content: center;
}

.button-container-coralselect button {
    width: 80%;
    height: 30px;
    margin: 5px;
    padding: 0px 0px;
    font-size: 16px;
    text-align: left;
    padding-left: 10px;
}

.button-container-center-vertical-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    justify-content: center;
}

.button-container-center-vertical-menu button {
    width: 80%;
    height: 35px;
    margin: 5px;
    padding: 0px 0px;
    font-size: 16px;
}



.button-nextpage {
    position: fixed;
    bottom: 5px;
    right: 5px;
}

.button-masshome {
    position: fixed;
    bottom: 5px;
    left: 5px;
}

.button-bottom {
    position: fixed;
    bottom: 5px;
}

.button-short-container button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 50%;
    margin-top: 5px;
    height: 30px;
    font-size: 16px;
}

.back-button-center {
    flex-direction: column;
    align-items: center;
    justify-content: center;

    display: block;
    width: 50%;
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
}

.back-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    justify-content: center;

    width: 50%;
    margin: 20px;
    padding: 10px 20px;
    font-size: 16px;
}

.button-lowheight {
    height: 35px;
    padding-top: 4px;
    margin: 5px;
}

.button-midheight {
    height: 45px;
    padding-top: 6px;
    margin: 5px;
}

.button-noaction {
    background-color: white;
    border-width: 1px;
    border-color: rgb(173, 173, 173);
}

.button-newcontent {
    background-color: lightpink;
}