
/* aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa prayMiddle */

#versesMain{
  position: relative;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100px;
}
#versesMain>div {
  position: absolute;
  margin: 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100px;
  font-size: 40px;
  color: white;
}


#prayMiddle{
}

#prayContents{
  margin: 50px 20%;
  display: flex;
  justify-content: center;
}

#prayPic{
  width: 200px;
  height: 500px;
  background-color: aquamarine;
}

#columnMiddleContent{
  display: flex;
  margin: 0 10%;
  justify-content: center;


}

#prayMiddleContent > div{
}

.column-content{
  width: 90%;
  border: 0.5px solid #ccc;
}

.column-content th{
  background-color: hsl(0, 4%, 84%);
}
.column-content td{
  text-align: center;
}
.column-content th:nth-child(1){
  width: 10%;
}
.column-content th:nth-child(2){
  white-space: nowrap;       /* 한 줄로 표시 */
  overflow: hidden;          /* 넘치는 부분을 숨김 */
  text-overflow: ellipsis;   /* 초과된 부분에 대한 생략 표시 (...) */
  max-width: 100px;  
  width: 40%;
}
.column-content th:nth-child(3){
  width: 10%;
}
.column-content th:nth-child(4){
  width: 10%;
}

#pagenation{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
#pagenation > div{
  display: flex;
  justify-content: center;
  margin: 0 5px;
  border: 1px solid #ccc;
  width: 22px;
  height: 22px;
  border-radius: 5px
}
#columnContent{
  display: flex;
  justify-content: center;
}
#columnDetail{
  width: 1000px;
  border : 1px solid #ccc;
  border-radius: 10px;
}
#columnDetail td{
  border : 1px solid #ccc;
  
}

#columnDetail tr > td:nth-child(1){
  text-align: center;
  width: 150px;
  height: 50px;
  background-color: antiquewhite;
}
#columnDetail tr > td:nth-child(2){
  padding-left: 30px;
}
#columnDetail tr:nth-child(5) > td{
  padding-left: 30px;
  text-align: left;
  background-color: white;
}
#columnButton{
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
#columnButton > button{
  margin-right: 600px;
}

/* 글자 표시 */
.column-content > td:nth-child(2){
  width: 20px;  
}
.column-content > td:nth-child(3){
  white-space: nowrap;       /* 한 줄로 표시 */
  overflow: hidden;          /* 넘치는 부분을 숨김 */
  text-overflow: ellipsis;   /* 초과된 부분에 대한 생략 표시 (...) */
  max-width: 100px;  
}