/**
 * chapter_detail.css - 章节详情页专用样式
 */

/* ================================================= */
/* 高亮颜色 */
/* ================================================= */
.highlight-yellow {
    background-color: #fef08a; /* yellow-200 */
}

.highlight-green {
    background-color: #a7f3d0; /* emerald-200 */
}

.highlight-blue {
    background-color: #bfdbfe; /* blue-200 */
}

/* ================================================= */
/* 高亮显隐控制 */
/* ================================================= */
.hide-highlights span[class*="highlight-"] {
    background-color: transparent !important;
    border-bottom: 2px dashed #cbd5e1;
}

/* ================================================= */
/* 自定义滚动条 */
/* ================================================= */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;
}
