/* ==========================================
   MangaStudio - Chapter Item Component
   ========================================== */

/* Chapters List */
.chapters-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Chapter Item */
.chapter-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.chapter-item:hover {
    background: #ebebed;
    transform: translateX(4px);
}

.chapter-item:hover .chapter-number {
    background: var(--accent);
    color: white;
}

/* Chapter Number */
.chapter-number {
    width: 36px;
    height: 36px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

/* Chapter Info */
.chapter-info {
    flex: 1;
}

.chapter-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.chapter-desc {
    font-size: 12px;
    color: var(--text-secondary);
}
