/*Comment Input*/
#comments-input-box{
    display: flex;
    flex-direction: row;
    position: relative;
    top: 30px;
    padding-left: 25px;
    padding-top: 20px;
    padding-bottom: 0;
    border-radius: 20px;
    background-color: rgb(3, 3, 27);
    width: 63%;
}
.comment-form ul {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 45px !important;
}
#comments li{
    display: inline-block;
}
#comments h3{
    margin-bottom: 5%;
    padding: 0;
}
#comments li:last-child {
    position: relative;
    top: -12.5%; /* adjust value */
}
#comments #submit-btn{
    position: relative;
    left: 350%;
    width: 200%;
    align-self: flex-start;
    background-color: rgb(59, 59, 85) !important;
    transition: .2s ease-in-out;
}
#comments .btn:hover{
    background-color: rgb(28, 28, 48) !important;
    border-color: white;
    transform: scale(1.1);
}
#message-input{
    width: 200%;
    height: 40px;
    border-width: 110%;
    padding-left: 10px;
    border-radius: 3px;
    margin-bottom: 20%;
}
#name-input{
    width: 90%;
    height: 40px;
    padding-left: 10px;
    border-radius: 3px;
}
.plz{
    position: relative;
    top: 15px;
}

/*Prev and Next button*/
.pagination {
    position: relative;
    left: 1170px;
    display: flex;
    width: 55px;
    gap: 20px;
}
.pagination #page-info{
    white-space: nowrap;
    margin-top: 25%;
}
.pagination #next-btn{
    margin: 0;
}
.pagination #prev-btn{
    margin: 0;
}
.pagination .btn {
    width: 200%;
    background-color: rgb(3, 3, 27);
}


/*Comment Section*/
.comment-section{
    margin-top: 20px;
}
.comment-section ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 5px;
    padding: 0;
}
.comment{
    width: 270%;
    height: auto;
    background-color: rgb(59, 59, 85) ;
    border-radius: 15px;
    border: 8px solid black;
    padding-left: 50px;
    padding-bottom: 20px;
    padding-right: 15px;
}
.comment-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.comment-header p{
    position: relative;
    top: 5px;
    color: white;
}
.comment h4{
    position: relative;
    top:5px;
    margin: 0;
    color: rgb(167, 167, 167);
}
.comment h2{
    position: relative;
    top: 7px;
    margin: 0;
    color: white;
}

