.iclw-comment-highlight {
    background-color: rgba(255, 255, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

.iclw-comment-highlight-active {
    background-color: rgba(255, 255, 0, 0.6);
}

.iclw-comment-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #f8f9fa;
    border-left: 1px solid #d1d5db;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.iclw-comment-sidebar-visible {
    right: 0;
}

.iclw-comment {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
}

.iclw-comment-active {
    background: #e0f2fe;
    border-color: #0284c7;
}

.iclw-comment-header {
    font-size: 14px;
    margin-bottom: 8px;
}

.iclw-comment-header strong {
    color: #1f2937;
}

.iclw-comment-header span {
    color: #6b7280;
    font-size: 12px;
}

.iclw-comment-body {
    font-size: 14px;
    color: #374151;
}