/**
 * UNeedSoft DSL QuestionDetailPage Stylesheet 
 * - qna.css
 * 
 * Q&A 게시판의 상세보기 기능 설정
 * 
 * @author Jin Byungeul (UNeedSoft)
 * @version 0.1.0
 * @since 0.0.1
 */
/* 좋아요/싫어요 버튼 hover 효과 */
.btn-like, .btn-dislike {
    position: relative;
    transition: background-color 0.2s;
}
.btn-like:hover, .btn-dislike:hover, .btn-like:focus, .btn-dislike:focus {
    background-color: rgba(13, 110, 253, 0.09);  /* 연한 blue */
    border-radius: 50%;
    /* 아래는 원형 강조, 필요에 따라 조정 */
    box-shadow: 0 0 0 8px rgba(13, 110, 253, 0.05);
}
.btn-dislike:hover, .btn-dislike:focus {
    background-color: rgba(220, 53, 69, 0.09); /* 연한 red */
    box-shadow: 0 0 0 8px rgba(220, 53, 69, 0.05);
}
