#bbs-title {
    color: #444;
    background-color: #ff0;
    font-size: 20px;
    padding: 15px 0;
    border-radius: 45px;
    margin: 0 8%;
    text-align: center;
    font-family: serif;
    font-weight: bold;
}
#bbs-box {
    padding-bottom: 5px;
}
#bbs-contents-box {
    height: auto;
    width: 100%;
    max-height: 768px;
    max-width: 1024px;
    margin: 5px 0;
    border-radius: 80px;
    overflow: auto;
    scroll-snap-type: y mandatory;
    object-fit: cover;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#bbs-contents-box::-webkit-scrollbar {
    display:none;
}
#bbs-bottom-box {
    padding-bottom: 0px;
    padding-top: 10px;
    margin-left: 1%;
    margin-right: 1%;
}
.bbs-post-box {
    margin: 5px 2%;
    padding: 15px 10px;
    border: 1px solid #333333;
    border-radius: 50px;
    background-color: #ffff99;
}
.user-identification-info {
    padding: 20px 0 0 5px;
}
.bbs-post-box .user-identification-area .bbs-user-icon {
    text-align: left;
}
.user-identification-area {
    display: flex;
}
img.bbs-user-icon-img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 20px;
}
.bbs-post-box .user-identification-area .user-identification-info {
    /* margin-left: 50px;*/
}
.bbs-text-contents {
    padding: 10px 5px;
}

#bbs-name {
    width: 130px;
}
#bbs-passwd {
    width: 100px;
}
#bbs-text {
    width: 200px;
    height: 65px;
    border-radius: 10px;
    border-width: 2px;
}
.delete_bbs_button {
    margin-left: 15px;
}