/**
 * 반응 목록 모달 다이얼로그 스타일
 *
 * 이 파일은 widgets/dialog/reaction-list.php 에서 사용됩니다.
 *
 * 구조:
 * - 반응 목록 컨테이너
 * - 반응 목록 아이템
 * - 읽지 않은 반응 스타일
 * - 사용자 아바타
 * - 반응 내용
 */

/* 반응 목록 컨테이너 */
.reaction-list-container {
    max-height: 400px;
    overflow-y: auto;
}

/* 반응 목록 아이템 */
.reaction-list-item {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.reaction-list-item:last-child {
    border-bottom: none;
}

.reaction-list-item:hover {
    background-color: #f8f9fa;
}

/* 읽지 않은 반응 */
.reaction-list-item.reaction-unread {
    background-color: #fff0f3;
}

.reaction-list-item.reaction-unread:hover {
    background-color: #ffe0e6;
}

/* 사용자 아바타 */
.reaction-avatar img {
    object-fit: cover;
}

.reaction-avatar .avatar-placeholder {
    width: 48px;
    height: 48px;
    background-color: #e9ecef;
    color: #6c757d;
}

/* 반응 내용 */
.reaction-content {
    min-width: 0;
}

.reaction-title {
    line-height: 1.4;
}

.reaction-user {
    color: #495057;
}
