/**
 * 신고 모달 스타일
 *
 * 이 파일은 widgets/dialog/report-modal.php 에서 사용됩니다.
 * 대부분 Bootstrap 5 클래스를 사용하며, 추가 커스텀 스타일이 필요한 경우 여기에 정의합니다.
 */

/* 신고 유형 리스트 아이템 스타일 */
#reportModal .list-group-item {
    cursor: pointer;
    transition: background-color 0.2s;
}

#reportModal .list-group-item:hover:not(.active) {
    background-color: #f8f9fa;
}

/* 활성화된 신고 유형 (danger 색상) */
#reportModal .list-group-item.active {
    background-color: #dc3545;
    border-color: #dc3545;
}

/* 활성화 상태에서 설명 텍스트 색상 */
#reportModal .list-group-item.active .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* 모달 헤더 아이콘 */
#reportModal .modal-title i {
    font-size: 1.1rem;
}

/* 안내 문구 리스트 스타일 */
#reportModal .alert-secondary ul {
    padding-left: 1.25rem;
}

#reportModal .alert-secondary li {
    margin-bottom: 0.25rem;
}

#reportModal .alert-secondary li:last-child {
    margin-bottom: 0;
}
