@charset "utf-8";

/* 댓글 상태 버튼 */
.td_comment {
    text-align: right;
    width:110px;
}
.btn_complete,
.btn_pending {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}
.btn_complete {
    color: none;
    background-color: #eeeeee; /* 답변 완료일 때 배경색 */
}
.btn_pending {
    color: #fff;
    background-color: #5cb85c; /* 상담 대기일 때 배경색 */
}
.btn_complete:hover,
.btn_pending:hover {
    opacity: 0.9;
}