.manage-buttons{
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}

.manage-left, .manage-right{
    width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manage-top-area, .manage-bottom-area{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.manage-button{
    display: inline-block;
    font-size: 20px;
    padding: 70px 0px;
    width: 95%;
    font-weight: bold;
    border: 2px solid #000;
}

.manage-bottom{
    width: 50%;
}

.manage-bottom-button-white{
    display: inline-block;
    font-size: 20px;
    padding: 70px 0px;
    width: 90%;
    font-weight: bold;
    border: 2px solid #000;
}

.modal {
    position: fixed; /* 画面上に固定 */
    top: 7%; /* 画面の上から0%の位置に配置 */
    left: 50%; /* 水平方向の中央に配置 */
    transform: translateX(-50%); /* 左方向に50%ずらして中央揃え */
    width: 50%; /* モーダルの幅を50%に設定 */
    background-color: white; /* 背景色を白に */
    border: 5px solid #767676; /* 枠線を薄い灰色に */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* 軽い影をつける */
    z-index: 1000; /* モーダルが他の要素の上に表示されるようにする */
    padding: 20px; /* 内側の余白を確保 */
    border-radius: 8px; /* 角を少し丸くする */
}

.modal-content {
    padding: 10px;
}

#modal-messages{
    max-height: 200px; /* モーダルの最大高さを200pxに制限 */
    overflow-y: auto; /* 縦方向のスクロールのみ許可 */
    overflow-x: hidden; /* 横方向のスクロールを無効にする */
}

.close {
    position: absolute;
    top: 0px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.mode-img{
    justify-items: center;
    text-align: center;
}

.mode-img img{
    max-width: 80%;
    margin: auto;
    border: 1px solid #000;
    border-radius: 15px;
}

@media (max-width: 880px) {
    .manage-left, .manage-right{
        width: 100%;
        margin: 5px 0;
    }
    .manage-bottom-button-white{
        padding: 50px 0px;
    }
    .manage-buttons{
        width: 100%;
    }
    .mode-img{
        width: 100%;
        margin: 10px 0;
    }
    .mode-img img{
        max-width: 100%;
    }
}